Constructor
new ConeGeometry( radius : number, height : number, radialSegments : number, heightSegments : number, openEnded : boolean, thetaStart : number, thetaLength : number )
Constructs a new cone geometry.
radius |
Radius of the cone base. |
height |
Height of the cone. |
radialSegments |
Number of segmented faces around the circumference of the cone. |
heightSegments |
Number of rows of faces along the height of the cone. |
openEnded |
Whether the base of the cone is open or capped. |
thetaStart |
Start angle for first segment, in radians. |
thetaLength |
The central angle, often called theta, of the circular sector, in radians.
The default value results in a complete cone. |
Properties
.parameters : Object
Holds the constructor parameters that have been used to generate the geometry. Any modification after instantiation does not change the geometry.
- Overrides: CylinderGeometry#parameters
Static Methods
.fromJSON( data : Object ) : ConeGeometry
Factory method for creating an instance of this class from the given JSON object.
data |
A JSON object representing the serialized geometry. |
- Returns: A new instance.