HTML Encoding and Default Values⤴
<IndexedFaceSet
attrib='x3dom.nodeTypes.X3DVertexAttributeNode'
ccw='true'
color='x3dom.nodeTypes.X3DColorNode'
colorIndex='[]'
colorPerVertex='true'
convex='true'
coord='x3dom.nodeTypes.X3DCoordinateNode'
coordIndex='[]'
creaseAngle='0'
lit='true'
metadata='X3DMetadataObject'
normal='x3dom.nodeTypes.Normal'
normalIndex='[]'
normalPerVertex='true'
normalUpdateMode=''fast''
solid='true'
texCoord='x3dom.nodeTypes.X3DTextureCoordinateNode'
texCoordIndex='[]'
useGeoCache='true'
></IndexedFaceSet>
Inheritance⤴
- Core/X3DNode(18)
- Rendering/X3DGeometryNode(12)
- Rendering/X3DComposedGeometryNode(6)
- IndexedFaceSet
Fields⤴
These are the X3D / X3DOM fields of this node. Values should usually be received / set as strings via
DOM functions (i.e., using
setAttribute("myFieldName", "myFieldValue")
and
getAttribute("myFieldName")
).
Name | Type | Default Value | Range | Inheritance | Standard | Description |
---|---|---|---|---|---|---|
attrib | MFNode | Shaders/X3DVertexAttributeNode | Rendering/X3DComposedGeometryNode | If the attrib field is not empty it shall contain a list of per-vertex attribute information for programmable shaders. | ||
ccw | SFBool | true | Rendering/X3DGeometryNode | The ccw field defines the ordering of the vertex coordinates of the geometry with respect to user-given or automatically generated normal vectors used in the lighting model equations. | ||
color | SFNode | Rendering/X3DColorNode | Rendering/X3DComposedGeometryNode | If the color field is NULL, the geometry shall be rendered normally using the Material and texture defined in the Appearance node. | ||
colorIndex | MFInt32 | [] | The index data for the color data. | |||
colorPerVertex | SFBool | true | Rendering/X3DComposedGeometryNode | If colorPerVertex is FALSE, colours are applied to each face. If colorPerVertex is true, colours are applied to each vertex. | ||
convex | SFBool | true | The convex field indicates whether all polygons in the shape are convex (TRUE). A polygon is convex if it is planar, does not intersect itself, and all of the interior angles at its vertices are less than 180 degrees. | |||
coord | SFNode | Rendering/X3DCoordinateNode | Rendering/X3DComposedGeometryNode | Contains a Coordinate node. | ||
coordIndex | MFInt32 | [] | The index data for the coord data. | |||
creaseAngle | SFFloat | 0 | The creaseAngle field affects how default normals are generated. If the angle between the geometric normals of two adjacent faces is less than the crease angle, normals shall be calculated so that the faces are shaded smoothly across the edge; otherwise, normals shall be calculated so that a lighting discontinuity across the edge is produced. Crease angles shall be greater than or equal to 0.0 angle base units. | |||
lit | SFBool | true | Rendering/X3DGeometryNode | Specifies whether this geometry should be rendered with or without lighting. | ||
metadata | SFNode | X3DMetadataObject | Core/X3DNode | Field to add metadata information | ||
normal | SFNode | Rendering/Normal | Rendering/X3DComposedGeometryNode | If the normal field is not NULL, it shall contain a Normal node whose normals are applied to the vertices or faces of the X3DComposedGeometryNode in a manner exactly equivalent to that described above for applying colours to vertices/faces (where normalPerVertex corresponds to colorPerVertex and normalIndex corresponds to colorIndex). If the normal field is NULL, the browser shall automatically generate normals in accordance with the node's definition. If the node does not define a behaviour, the default is to generate an averaged normal for all faces that share that vertex. | ||
normalIndex | MFInt32 | [] | The index data for the normal data. | |||
normalPerVertex | SFBool | true | Rendering/X3DComposedGeometryNode | If normalPerVertex is FALSE, normals are applied to each face. If normalPerVertex is true, normals are applied to each vertex. | ||
normalUpdateMode | SFString | 'fast' | Rendering/X3DComposedGeometryNode | |||
solid | SFBool | true | Rendering/X3DGeometryNode | Specifies whether backface-culling is used. If solid is TRUE only front-faces are drawn. | ||
texCoord | SFNode | Texturing/X3DTextureCoordinateNode | Rendering/X3DComposedGeometryNode | If the texCoord field is not NULL, it shall contain a TextureCoordinate node. | ||
texCoordIndex | MFInt32 | [] | The index data for the texcoord data. | |||
useGeoCache | SFBool | true | Rendering/X3DGeometryNode | Most geo primitives use geo cache and others might later on, but one should be able to disable cache per geometry node. Defaults to global useGeoCache setting parameter. |