Home Reference Source Repository

src/lib/descriptors/Geometry/CircleBufferGeometryDescriptor.js

import * as THREE from 'three';

import PropTypes from 'react/lib/ReactPropTypes';

import BufferGeometryDescriptorBase from './BufferGeometryDescriptorBase';

class CircleBufferGeometryDescriptor extends BufferGeometryDescriptorBase {
  constructor(react3RendererInstance) {
    super(react3RendererInstance);

    [
      'radius',
      'segments',
      'thetaStart',
      'thetaLength',
    ].forEach((propName) => {
      this.hasProp(propName, {
        type: PropTypes.number,
        update: this.updateCacheAndReplace.bind(this, propName),
        default: undefined,
      });
    });
  }

  construct(props) {
    const {
      radius,
      segments,
      thetaStart,
      thetaLength,
    } = props;

    return new THREE.CircleBufferGeometry(radius, segments, thetaStart, thetaLength);
  }
}

module.exports = CircleBufferGeometryDescriptor;