Package geomss.app
Enum GeomSSCanvas3D.PDViewAngle
- java.lang.Object
- 
- java.lang.Enum<GeomSSCanvas3D.PDViewAngle>
- 
- geomss.app.GeomSSCanvas3D.PDViewAngle
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<GeomSSCanvas3D.PDViewAngle>
 - Enclosing class:
- GeomSSCanvas3D
 
 public static enum GeomSSCanvas3D.PDViewAngle extends java.lang.Enum<GeomSSCanvas3D.PDViewAngle> Pre-defined view angles used withsetView.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description BOTTOMFRONTLEFT_SIDEREARRIGHT_SIDETOPTOP_LEFT_BACKTOP_LEFT_FRONTTOP_RIGHT_BACKTOP_RIGHT_FRONT
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.jogamp.vecmath.Matrix3dgetRotationMatrix()static GeomSSCanvas3D.PDViewAnglevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static GeomSSCanvas3D.PDViewAngle[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
RIGHT_SIDEpublic static final GeomSSCanvas3D.PDViewAngle RIGHT_SIDE 
 - 
LEFT_SIDEpublic static final GeomSSCanvas3D.PDViewAngle LEFT_SIDE 
 - 
TOPpublic static final GeomSSCanvas3D.PDViewAngle TOP 
 - 
BOTTOMpublic static final GeomSSCanvas3D.PDViewAngle BOTTOM 
 - 
FRONTpublic static final GeomSSCanvas3D.PDViewAngle FRONT 
 - 
REARpublic static final GeomSSCanvas3D.PDViewAngle REAR 
 - 
TOP_RIGHT_FRONTpublic static final GeomSSCanvas3D.PDViewAngle TOP_RIGHT_FRONT 
 - 
TOP_LEFT_FRONTpublic static final GeomSSCanvas3D.PDViewAngle TOP_LEFT_FRONT 
 - 
TOP_RIGHT_BACKpublic static final GeomSSCanvas3D.PDViewAngle TOP_RIGHT_BACK 
 - 
TOP_LEFT_BACKpublic static final GeomSSCanvas3D.PDViewAngle TOP_LEFT_BACK 
 
- 
 - 
Method Detail- 
valuespublic static GeomSSCanvas3D.PDViewAngle[] values() Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GeomSSCanvas3D.PDViewAngle c : GeomSSCanvas3D.PDViewAngle.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static GeomSSCanvas3D.PDViewAngle valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
- java.lang.IllegalArgumentException- if this enum type has no constant with the specified name
- java.lang.NullPointerException- if the argument is null
 
 - 
getRotationMatrixpublic org.jogamp.vecmath.Matrix3d getRotationMatrix() - Returns:
- the rotation matrix associated with this view angle.
 
 
- 
 
-