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<Polygon> |
MeshSelectionManager.getSelectedPolygons()
Gets the currently-selected polygons in the MeshApplication.
|
Modifier and Type | Method and Description |
---|---|
void |
TabDescriptorProvider.visit(Polygon polygon) |
Modifier and Type | Class and Description |
---|---|
class |
Hex
This is a 6-sided polygon with 6 edges and 6 vertices.
|
class |
Quad
This is a 4-sided polygon with 4 edges and 4 vertices.
|
Modifier and Type | Method and Description |
---|---|
Polygon |
MeshComponent.getPolygon(int id)
Gets a Polygon instance corresponding to an ID.
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<Polygon> |
MeshComponent.getPolygons()
Gets a list of all polygons stored in the MeshComponent ordered by their
IDs.
|
java.util.ArrayList<Polygon> |
Custom2DShape.getPolygons()
Gets the collection of polygons composing the Custom2DShape.
|
java.util.ArrayList<Polygon> |
MeshComponent.getPolygonsFromEdge(int id)
Returns a list of Polygons containing the Edge with the specified ID.
|
java.util.ArrayList<Polygon> |
MeshComponent.getPolygonsFromVertex(int id)
Returns a list of Polygons containing the Vertex with the specified ID.
|
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.
|
Modifier and Type | Method and Description |
---|---|
void |
MeshComponent.addPolygon(Polygon polygon)
Adds a polygon to the MeshComponent.
|
void |
Custom2DShape.addPolygon(Polygon polygon)
Adds a Polygon to the Custom2DShape.
|
void |
Quad.copy(Polygon polygon)
This operation copies the contents of a 4-sided Polygon into the current
object using a deep copy.
|
void |
Polygon.copy(Polygon polygon)
This operation copies the contents of a Polygon into the current object
using a deep copy.
|
void |
Custom2DShape.removePolygon(Polygon polygon)
Removes a Polygon from the Custom2DShape.
|
void |
IMeshPartVisitor.visit(Polygon polygon)
The visit operation for a generic Polygon.
|
Modifier and Type | Method and Description |
---|---|
void |
MeshComponent.setPolygons(java.util.ArrayList<Polygon> polygons)
Sets the list of all polygons stored in the MeshComponent.
|
void |
Custom2DShape.setPolygons(java.util.ArrayList<Polygon> polygons)
Sets the collection of polygons composing the Custom2DShape.
|