Package | Description |
---|---|
org.eclipse.ice.client.widgets.mesh | |
org.eclipse.ice.client.widgets.mesh.properties | |
org.eclipse.ice.datastructures.form.mesh |
Modifier and Type | Method and Description |
---|---|
java.util.List<Edge> |
MeshSelectionManager.getSelectedEdges()
Gets the currently-selected edges in the MeshApplication.
|
Constructor and Description |
---|
EdgeController(Edge edge,
java.util.concurrent.ConcurrentLinkedQueue<AbstractMeshController> queue,
com.jme3.material.Material material)
The default constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
TabDescriptorProvider.visit(Edge edge) |
Modifier and Type | Class and Description |
---|---|
class |
BezierEdge
An Edge comprising a Bezier curve between its two Vertices.
|
class |
PolynomialEdge
An Edge comprising a polynomial curve that connects its two Vertices.
|
Modifier and Type | Method and Description |
---|---|
Edge |
MeshComponent.getEdge(int id)
Gets an Edge instance corresponding to an ID.
|
Edge |
MeshComponent.getEdgeFromVertices(int firstId,
int secondId)
Returns an Edge that connects two specified vertices if one exists.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Edge> |
Polygon.getEdges()
Gets the collection of edges composing the polygon.
|
java.util.ArrayList<Edge> |
MeshComponent.getEdges()
Gets a list of all edges associated with this MeshComponent.
|
java.util.ArrayList<Edge> |
MeshComponent.getEdgesFromVertex(int id)
Returns a list of Edges attached to the Vertex with the specified ID.
|
Modifier and Type | Method and Description |
---|---|
void |
Edge.copy(Edge edge)
This operation copies the contents of a Edge into the current object
using a deep copy.
|
void |
IMeshPartVisitor.visit(Edge edge)
The visit operation for an
Edge . |
Constructor and Description |
---|
Hex(java.util.ArrayList<Edge> edges,
java.util.ArrayList<Vertex> vertices)
The default constructor.
|
Polygon(java.util.ArrayList<Edge> edges,
java.util.ArrayList<Vertex> vertices)
The default constructor.
|
Quad(java.util.ArrayList<Edge> edges,
java.util.ArrayList<Vertex> vertices)
The default constructor.
|