You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<div>parameters is an object with one or more properties defining the material's appearance.</div>
23
23
24
24
<div>
25
-
color — Particle color in hexadecimal. Default is 0xffffff.<br/>
25
+
color — Points color in hexadecimal. Default is 0xffffff.<br/>
26
26
map — a [page:Texture texture].If defined, then a point has the data from texture as colors. Default is null.<br/>
27
-
size — Define size of particles. Default is 1.0.<br/>
27
+
size — Define size of points. Default is 1.0.<br/>
28
28
sizeAttenuation — Enable/disable size attenuation with distance.<br/>
29
29
vertexColors — Define whether the material uses vertex colors, or not. Default is false.<br/>
30
30
fog — Define whether the material color is affected by global fog settings. Default is true.
@@ -35,19 +35,19 @@ <h2>Properties</h2>
35
35
36
36
<h3>[property:Number color]</h3>
37
37
38
-
<div>Sets the color of the particles. Default is 0xffffff.</div>
38
+
<div>Sets the color of the points. Default is 0xffffff.</div>
39
39
40
40
<h3>[property:Texture map]</h3>
41
41
42
-
<div>Sets the color of the particles using data from a texture.</div>
42
+
<div>Sets the color of the points using data from a texture.</div>
43
43
44
44
<h3>[property:Number size]</h3>
45
45
46
-
<div>Sets the size of the particles. Default is 1.0.</div>
46
+
<div>Sets the size of the points. Default is 1.0.</div>
47
47
48
48
<h3>[property:Boolean sizeAttenuation]</h3>
49
49
50
-
<div>Specify whether particles' size will get smaller with the distance. Default is true.</div>
50
+
<div>Specify whether points' size will get smaller with the distance. Default is true.</div>
51
51
52
52
<h3>[property:Boolean vertexColors]</h3>
53
53
<div>Define how the vertices gets colored. Possible values are THREE.NoColors, THREE.FaceColors and THREE.VertexColors. Default is THREE.NoColors.</div>
Copy file name to clipboardExpand all lines: docs/api/objects/Points.html
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
13
13
<h1>[name]</h1>
14
14
15
-
<divclass="desc">A class for displaying particles in the form of variable size points. For example, if using the [page:WebGLRenderer], the particles are displayed using GL_POINTS.</div>
15
+
<divclass="desc">A class for displaying points. For example, if using the [page:WebGLRenderer], the points are displayed using GL_POINTS.</div>
16
16
17
17
18
18
<h2>Constructor</h2>
@@ -29,7 +29,7 @@ <h2>Properties</h2>
29
29
30
30
<h3>[property:Geometry geometry]</h3>
31
31
32
-
<div>An instance of [page:Geometry], where each vertex designates the position of a particle in the system.</div>
32
+
<div>An instance of [page:Geometry], where each vertex designates the position the points.</div>
0 commit comments