Points constructor

Points(
  1. BufferGeometry geometry,
  2. dynamic material
)

Implementation

Points(BufferGeometry geometry, material) {
  type = 'Points';

  this.geometry = geometry;
  this.material = material;

  updateMorphTargets();
}