Browse Source

Update Point.d.ts

- updated docs 
- removed dead link
ycw 4 years ago
parent
commit
85fc9b74da
1 changed files with 1 additions and 3 deletions
  1. 1 3
      src/objects/Points.d.ts

+ 1 - 3
src/objects/Points.d.ts

@@ -6,9 +6,7 @@ import { BufferGeometry } from '../core/BufferGeometry';
 import { Intersection } from '../core/Raycaster';
 import { Intersection } from '../core/Raycaster';
 
 
 /**
 /**
- * A class for displaying particles in the form of variable size points. For example, if using the WebGLRenderer, the particles are displayed using GL_POINTS.
- *
- * @see {@link https://github.com/mrdoob/three.js/blob/master/src/objects/ParticleSystem.js|src/objects/ParticleSystem.js}
+ * A class for displaying points. The points are rendered by the WebGLRenderer using gl.POINTS.
  */
  */
 export class Points <
 export class Points <
 	TGeometry extends Geometry | BufferGeometry = Geometry | BufferGeometry,
 	TGeometry extends Geometry | BufferGeometry = Geometry | BufferGeometry,