Package com.openinventor.meshvizxlm.mesh
Enum Class CellStorageLayout
- All Implemented Interfaces:
Serializable
,Comparable<CellStorageLayout>
,Constable
Hint about coordinates organization in a hexahedron cell.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe vertices of each hexahedron are numbered as follows : The first 4 vertices define the "right" face of the hexahedron.The vertices of each hexahedron are numbered as follows : The first 4 vertices define the "left" face of the hexahedron.The vertices of each hexahedron are numbered as follows : The first 4 vertices define the "front" face of the hexahedron.The vertices of each hexahedron are numbered as follows : The first 4 vertices define the "back" face of the hexahedron.The vertices of each hexahedron are numbered as follows : The first 4 vertices define the "top" face of the hexahedron.The vertices of each hexahedron are numbered as follows : The first 4 vertices define the "bottom" face of the hexahedron. -
Method Summary
Modifier and TypeMethodDescriptionstatic CellStorageLayout
Returns the enum constant of this class with the specified name.static CellStorageLayout[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
I_MIN_FIRST
The vertices of each hexahedron are numbered as follows :- The first 4 vertices define the "left" face of the hexahedron. This face is on the logical JK plane I=i.
- The last 4 vertices define the "right" face of the hexahedron. This face is on the logical JK plane I=i+1.
Vertices numbering:
J | | n1----------n5 /| /| / | / | / | / | n2---------n6 | | | | | | n0----|-----n4 --- I | / | / | / | / |/ | / n3---------n7 / / K -
I_MAX_FIRST
The vertices of each hexahedron are numbered as follows :- The first 4 vertices define the "right" face of the hexahedron. This face is on the logical JK plane I=i+1.
- The last 4 vertices define the "left" face of the hexahedron. This face is on the logical JK plane I=i.
Vertices numbering:
J | | n5----------n1 /| /| / | / | / | / | n6---------n2 | | | | | | n4----|-----n0 --- I | / | / | / | / |/ | / n7---------n3 / / K -
J_MIN_FIRST
The vertices of each hexahedron are numbered as follows :- The first 4 vertices define the "back" face of the hexahedron. This face is on the logical IK plane J=j.
- The last 4 vertices define the "front" face of the hexahedron. This face is on the logical IK plane J=j+1.
Vertices numbering:
J | | n4----------n7 /| /| / | / | / | / | n5---------n6 | | | | | | n0----|-----n3 --- I | / | / | / | / |/ | / n1---------n2 / / K -
J_MAX_FIRST
The vertices of each hexahedron are numbered as follows :- The first 4 vertices define the "front" face of the hexahedron. This face is on the logical IK plane J=j+1.
- The last 4 vertices define the "back" face of the hexahedron. This face is on the logical IK plane J=j.
Vertices numbering:
J | | n0----------n3 /| /| / | / | / | / | n1---------n2 | | | | | | n4----|-----n7 --- I | / | / | / | / |/ | / n5---------n6 / / K -
K_MIN_FIRST
The vertices of each hexahedron are numbered as follows :- The first 4 vertices define the "bottom" face of the hexahedron. This face is on the logical IJ plane K=k.
- The last 4 vertices define the "top" face of the hexahedron. This face is on the logical IJ plane k=k+1.
Vertices numbering:
J | | n3----------n2 /| /| / | / | / | / | n7---------n6 | | | | | | n0----|-----n1 --- I | / | / | / | / |/ | / n4---------n5 / / K -
K_MAX_FIRST
The vertices of each hexahedron are numbered as follows :- The first 4 vertices define the "top" face of the hexahedron. This face is on the logical IJ plane K=k+1.
- The last 4 vertices define the "bottom" face of the hexahedron. This face is on the logical IJ plane k=k.
Vertices numbering:
J | | n7----------n6 /| /| / | / | / | / | n3---------n2 | | | | | | n4----|-----n5 --- I | / | / | / | / |/ | / n0---------n1 / / K
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-