|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<CuboidVertex>
com.kuka.geometry.forms.CuboidVertex
public enum CuboidVertex
Defines the vertexes of a cuboid.
The reference frame of the cuboid matches with vertex X0Y0Z0.
o--------o /| /| o-|------o | | o------|-o |/ |/ X--------o
| Enum Constant Summary | |
|---|---|
X0Y0Z0
This vertex matches the reference frame. |
|
X0Y0Z1
Vertex in +z from reference frame. |
|
X0Y1Z0
Vertex in +y from reference frame. |
|
X0Y1Z1
Vertex in +y/+z from reference frame. |
|
X1Y0Z0
Vertex in +x from reference frame. |
|
X1Y0Z1
Vertex in +x/+z from reference frame. |
|
X1Y1Z0
Vertex in +x/+y from reference frame. |
|
X1Y1Z1
Vertex in +x/+y/+z from reference frame. |
|
| Method Summary | |
|---|---|
static CuboidVertex |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static CuboidVertex[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final CuboidVertex X0Y0Z0
o--------o /| /| o-|------o | | o------|-o |/ |/ X--------o
public static final CuboidVertex X1Y0Z0
o--------o /| /| o-|------o | | o------|-o |/ |/ o--------X
public static final CuboidVertex X1Y1Z0
o--------o /| /| o-|------o | | o------|-X |/ |/ o--------o
public static final CuboidVertex X0Y1Z0
o--------o /| /| o-|------o | | X------|-o |/ |/ o--------o
public static final CuboidVertex X0Y0Z1
o--------o /| /| X-|------o | | o------|-o |/ |/ o--------o
public static final CuboidVertex X1Y0Z1
o--------o /| /| o-|------X | | o------|-o |/ |/ o--------o
public static final CuboidVertex X1Y1Z1
o--------X /| /| o-|------o | | o------|-o |/ |/ o--------o
public static final CuboidVertex X0Y1Z1
X--------o /| /| o-|------o | | o------|-o |/ |/ o--------o
| Method Detail |
|---|
public static CuboidVertex[] values()
for (CuboidVertex c : CuboidVertex.values()) System.out.println(c);
public static CuboidVertex valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||