HTML Encoding and Default Values⤴
<PointSet
ccw='true'
color='x3dom.nodeTypes.X3DColorNode'
coord='x3dom.nodeTypes.X3DCoordinateNode'
lit='true'
metadata='X3DMetadataObject'
normal='null'
solid='true'
useGeoCache='true'
></PointSet>
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 |
---|---|---|---|---|---|---|
ccw | SFBool | true | 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 | X3DColorNode |
![]() |
If NULL the geometry is rendered using the Material and texture defined in the Appearance node. If not NULL the field shall contain a Color node whose colours are applied depending on the value of "colorPerVertex". | ||
coord | SFNode | X3DCoordinateNode |
![]() |
Coordinate node specifiying the vertices used by the geometry. | ||
lit | SFBool | true | X3DGeometryNode |
![]() |
Specifies whether this geometry should be rendered with or without lighting. | |
metadata | SFNode | X3DMetadataObject | Core/X3DNode |
![]() |
Field to add metadata information | |
normal | SFNode | null |
![]() |
Stores a Normal node containing the normals for each point. | ||
solid | SFBool | true | X3DGeometryNode |
![]() |
Specifies whether backface-culling is used. If solid is TRUE only front-faces are drawn. | |
useGeoCache | SFBool | true | 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. |