download
raw
810 Bytes
import { CylinderGeometry } from './CylinderGeometry.js';
class ConeGeometry extends CylinderGeometry {
constructor( radius = 1, height = 1, radialSegments = 32, heightSegments = 1, openEnded = false, thetaStart = 0, thetaLength = Math.PI * 2 ) {
super( 0, radius, height, radialSegments, heightSegments, openEnded, thetaStart, thetaLength );
this.type = 'ConeGeometry';
this.parameters = {
radius: radius,
height: height,
radialSegments: radialSegments,
heightSegments: heightSegments,
openEnded: openEnded,
thetaStart: thetaStart,
thetaLength: thetaLength
};
}
static fromJSON( data ) {
return new ConeGeometry( data.radius, data.height, data.radialSegments, data.heightSegments, data.openEnded, data.thetaStart, data.thetaLength );
}
}
export { ConeGeometry };

Xet Storage Details

Size:
810 Bytes
·
Xet hash:
69bb3894df92328eef20fd5fd3a474cc49d5dbb63c3f0af56c8cc2c16f44f05d

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.