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. Default is |
| height |
Height of the cone. Default is |
| radialSegments |
Number of segmented faces around the circumference of the cone. Default is |
| heightSegments |
Number of rows of faces along the height of the cone. Default is |
| openEnded |
Whether the base of the cone is open or capped. Default is |
| thetaStart |
Start angle for first segment, in radians. Default is |
| thetaLength |
The central angle, often called theta, of the circular sector, in radians. The default value results in a complete cone. Default is |
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.