Class ColladaMeshShape.Geometry
- java.lang.Object
-
- gov.nasa.worldwind.ogc.collada.impl.ColladaMeshShape.Geometry
-
- Enclosing class:
- ColladaMeshShape
protected static class ColladaMeshShape.Geometry extends java.lang.ObjectGeometry and attributes of a COLLADAtrianglesorlineselement.
-
-
Field Summary
Fields Modifier and Type Field Description protected ColladaAbstractGeometrycolladaGeometryCollada element that defines this geometry.protected booleandoubleSidedIndicates whether or not the geometry is double sided.protected MaterialmaterialMaterial applied to this geometry.protected intoffsetOffset (in vertices) into the coord, normal, and texcoord buffers of this coordinates for this geometry.protected WWTexturetextureTexture applied to this geometry.
-
Constructor Summary
Constructors Constructor Description Geometry(ColladaAbstractGeometry geometry)Create a new geometry instance.
-
-
-
Field Detail
-
colladaGeometry
protected ColladaAbstractGeometry colladaGeometry
Collada element that defines this geometry.
-
offset
protected int offset
Offset (in vertices) into the coord, normal, and texcoord buffers of this coordinates for this geometry.
-
texture
protected WWTexture texture
Texture applied to this geometry.
-
material
protected Material material
Material applied to this geometry.
-
doubleSided
protected boolean doubleSided
Indicates whether or not the geometry is double sided. If double sided, the geometry must be rendered with backface culling disabled. This property is determined by the presence of a technique for the "GOOGLEEARTH" profile that includes a double_sided field.
-
-
Constructor Detail
-
Geometry
public Geometry(ColladaAbstractGeometry geometry)
Create a new geometry instance.- Parameters:
geometry- COLLADA geometry to render.
-
-