Uses of Class
org.xith3d.scenegraph.primitives.GeometryType

Packages that use GeometryType
org.xith3d.scenegraph.primitives   
 

Uses of GeometryType in org.xith3d.scenegraph.primitives
 

Fields in org.xith3d.scenegraph.primitives declared as GeometryType
static GeometryType GeometryType.ITA
          An alias for INDEXED_TRIANGLE_ARRAY.
static GeometryType GeometryType.ITSA
          An alias for INDEXED_TRIANGLE_STRIP_ARRAY.
static GeometryType GeometryType.TA
          An alias for TRIANGLE_ARRAY.
static GeometryType GeometryType.TSA
          An alias for TRIANGLE_STRIP_ARRAY.
 

Methods in org.xith3d.scenegraph.primitives that return GeometryType
static GeometryType Box.getGeometryConstructionTypeHint()
          Returns the hint for this Shape's Geometry to be constructed of a certain type.
static GeometryType Capsule.getGeometryConstructionTypeHint()
           
static GeometryType Cone.getGeometryConstructionTypeHint()
           
static GeometryType Cylinder.getGeometryConstructionTypeHint()
           
static GeometryType Disk.getGeometryConstructionTypeHint()
           
static GeometryType GeoSphere.getGeometryConstructionTypeHint()
           
static GeometryType Grid.getGeometryConstructionTypeHint()
           
static GeometryType Hemisphere.getGeometryConstructionTypeHint()
           
static GeometryType Sphere.getGeometryConstructionTypeHint()
           
static GeometryType Torus.getGeometryConstructionTypeHint()
           
 GeometryType GeometryConstruct.getGeometryTypeHint()
           
static GeometryType GeometryType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static GeometryType[] GeometryType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.xith3d.scenegraph.primitives with parameters of type GeometryType
static void Box.setGeometryConstructionTypeHint(GeometryType hint)
          Sets the hint for this Shape's Geometry to be constructed of a certain type.
static void Capsule.setGeometryConstructionTypeHint(GeometryType hint)
          Sets the hint for this ShapeType's Geometry to be constructed of a certain type.
static void Cone.setGeometryConstructionTypeHint(GeometryType hint)
          Sets the hint for this ShapeType's Geometry to be constructed of a certain type.
static void Cylinder.setGeometryConstructionTypeHint(GeometryType hint)
          Sets the hint for this ShapeType's Geometry to be constructed of a certain type.
static void Disk.setGeometryConstructionTypeHint(GeometryType hint)
          Sets the hint for this ShapeType's Geometry to be constructed of a certain type.
static void GeoSphere.setGeometryConstructionTypeHint(GeometryType hint)
          Sets the hint for this ShapeType's Geometry to be constructed of a certain type.
static void Grid.setGeometryConstructionTypeHint(GeometryType hint)
          Sets the hint for this ShapeType's Geometry to be constructed of a certain type.
static void Hemisphere.setGeometryConstructionTypeHint(GeometryType hint)
          Sets the hint for this ShapeType's Geometry to be constructed of a certain type.
static void Sphere.setGeometryConstructionTypeHint(GeometryType hint)
          Sets the hint for this ShapeType's Geometry to be constructed of a certain type.
static void Torus.setGeometryConstructionTypeHint(GeometryType hint)
          Sets the hint for this ShapeType's Geometry to be constructed of a certain type.
 

Constructors in org.xith3d.scenegraph.primitives with parameters of type GeometryType
GeometryConstruct(GeometryType geometryTypeHint, org.openmali.vecmath2.Tuple3f[] coords, org.openmali.vecmath2.Vector3f[] normals, org.openmali.vecmath2.TexCoord2f[] texCoords2f)
           
GeometryConstruct(GeometryType geometryTypeHint, org.openmali.vecmath2.Tuple3f[] coords, org.openmali.vecmath2.Vector3f[] normals, org.openmali.vecmath2.TexCoord2f[] texCoords2f, org.openmali.vecmath2.Colorf[] colors)
           
GeometryConstruct(GeometryType geometryTypeHint, org.openmali.vecmath2.Tuple3f[] coords, org.openmali.vecmath2.Vector3f[] normals, org.openmali.vecmath2.TexCoord2f[] texCoords2f, org.openmali.vecmath2.Colorf[] colors, int[] indices, int[] stripLengths)
           
GeometryConstruct(GeometryType geometryTypeHint, org.openmali.vecmath2.Tuple3f[] coords, org.openmali.vecmath2.Vector3f[] normals, org.openmali.vecmath2.TexCoord2f[] texCoords2f, int[] indices, int[] stripLengths)
           
GeometryConstruct(GeometryType geometryTypeHint, org.openmali.vecmath2.Tuple3f[] coords, org.openmali.vecmath2.Vector3f[] normals, org.openmali.vecmath2.TexCoord3f[] texCoords3f)
           
GeometryConstruct(GeometryType geometryTypeHint, org.openmali.vecmath2.Tuple3f[] coords, org.openmali.vecmath2.Vector3f[] normals, org.openmali.vecmath2.TexCoord3f[] texCoords3f, org.openmali.vecmath2.Colorf[] colors)
           
GeometryConstruct(GeometryType geometryTypeHint, org.openmali.vecmath2.Tuple3f[] coords, org.openmali.vecmath2.Vector3f[] normals, org.openmali.vecmath2.TexCoord3f[] texCoords3f, org.openmali.vecmath2.Colorf[] colors, int[] indices, int[] stripLengths)
           
GeometryConstruct(GeometryType geometryTypeHint, org.openmali.vecmath2.Tuple3f[] coords, org.openmali.vecmath2.Vector3f[] normals, org.openmali.vecmath2.TexCoord3f[] texCoords3f, int[] indices, int[] stripLengths)