three.fbo-helper
Version:
FrameBuffer Object inspector for three.js
32 lines (21 loc) • 771 B
JavaScript
import { Geometry } from '../core/Geometry';
import { RingBufferGeometry } from './RingBufferGeometry';
/**
* @author Kaleb Murphy
*/
function RingGeometry( innerRadius, outerRadius, thetaSegments, phiSegments, thetaStart, thetaLength ) {
Geometry.call( this );
this.type = 'RingGeometry';
this.parameters = {
innerRadius: innerRadius,
outerRadius: outerRadius,
thetaSegments: thetaSegments,
phiSegments: phiSegments,
thetaStart: thetaStart,
thetaLength: thetaLength
};
this.fromBufferGeometry( new RingBufferGeometry( innerRadius, outerRadius, thetaSegments, phiSegments, thetaStart, thetaLength ) );
}
RingGeometry.prototype = Object.create( Geometry.prototype );
RingGeometry.prototype.constructor = RingGeometry;
export { RingGeometry };