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<Vertex> |
MeshSelectionManager.getSelectedVertices()
Gets the currently-selected vertices in the MeshApplication.
|
Constructor and Description |
---|
VertexController(Vertex vertex,
java.util.concurrent.ConcurrentLinkedQueue<AbstractMeshController> queue,
com.jme3.material.Material material)
The default constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
TabDescriptorProvider.visit(Vertex vertex) |
Modifier and Type | Method and Description |
---|---|
Vertex |
MeshComponent.getVertex(int id)
Gets a Vertex instance corresponding to an ID.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Vertex> |
Polygon.getVertices()
Gets the collection of vertices composing the polygon.
|
java.util.ArrayList<Vertex> |
MeshComponent.getVertices()
Gets a list of all vertices associated with this MeshComponent.
|
Modifier and Type | Method and Description |
---|---|
void |
Vertex.copy(Vertex vertex)
This operation copies the contents of a Vertex into the current object
using a deep copy.
|
void |
IMeshPartVisitor.visit(Vertex vertex)
The visit operation for a
Vertex . |
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Polygon> |
MeshComponent.getPolygonsFromVertices(java.util.ArrayList<Vertex> vertices)
Returns a list containing all Polygons in the MeshComponent whose
vertices are a subset of the supplied list of vertices.
|
Constructor and Description |
---|
Edge(Vertex start,
Vertex end)
The default constructor.
|
Constructor and Description |
---|
BezierEdge(java.util.ArrayList<Vertex> vertices)
The default constructor.
|
Edge(java.util.ArrayList<Vertex> vertices)
This constructor takes a collection of vertices.
|
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.
|
PolynomialEdge(java.util.ArrayList<Vertex> vertices)
The default constructor.
|
Quad(java.util.ArrayList<Edge> edges,
java.util.ArrayList<Vertex> vertices)
The default constructor.
|