API / geotoolkit3d / scene / pointset / PointSet / SymbolGeometry
pointset.PointSet.SymbolGeometry
Enum of symbols.
The functions provided by this enum are responsible for loading/creating a Three.BufferGeometry that will be used to display a symbol in 3D.
Constructors
Accessors
Accessors
• Static get Cube(): () => BufferGeometry<NormalBufferAttributes>
A cube symbol
fn
▸ (): BufferGeometry<NormalBufferAttributes>
A cube symbol
BufferGeometry<NormalBufferAttributes>
• Static get Icosahedron(): (precision: number) => BufferGeometry<NormalBufferAttributes>
An icosahedron/sphere symbol using an icosahedron geometry. Can be used as an icosahedron with precision = 0, or as a high quality sphere at precision >= 12.
fn
▸ (precision): BufferGeometry<NormalBufferAttributes>
An icosahedron/sphere symbol using an icosahedron geometry. Can be used as an icosahedron with precision = 0, or as a high quality sphere at precision >= 12.
| Name | Type |
|---|---|
precision | number |
BufferGeometry<NormalBufferAttributes>
• Static get Pyramid(): () => BufferGeometry<NormalBufferAttributes>
A pyramid symbol
fn
▸ (): BufferGeometry<NormalBufferAttributes>
A pyramid symbol
BufferGeometry<NormalBufferAttributes>
• Static get Sphere(): (precision: number) => BufferGeometry<NormalBufferAttributes>
A sphere symbol using an UV sphere geometry.
fn
▸ (precision): BufferGeometry<NormalBufferAttributes>
A sphere symbol using an UV sphere geometry.
| Name | Type |
|---|---|
precision | number |
BufferGeometry<NormalBufferAttributes>