File tree 6 files changed +428
-19
lines changed
6 files changed +428
-19
lines changed Original file line number Diff line number Diff line change @@ -12,19 +12,43 @@ <h1>Core Constants</h1>
12
12
< h2 > Revision Number</ h2 >
13
13
14
14
< code >
15
- THREE.REVISION
15
+ THREE.REVISION
16
16
</ code >
17
17
18
18
< div id ="rev ">
19
19
The current three.js [link:https://github.com/mrdoob/three.js/releases revision number].
20
20
</ div >
21
21
22
- < h2 > Mouse Buttons</ h2 >
23
- < code >
24
- THREE.MOUSE.LEFT
25
- THREE.MOUSE.MIDDLE
26
- THREE.MOUSE.RIGHT
27
- </ code >
22
+ < h2 > Color Spaces</ h2 >
23
+ < code >
24
+ THREE.SRGBColorSpace
25
+ THREE.LinearSRGBColorSpace
26
+ </ code >
27
+
28
+ < p >
29
+ [page:SRGBColorSpace] (“sRGB”) refers to the color space defined by the Rec. 709 primaries, D65
30
+ white point, and nonlinear sRGB transfer functions. sRGB is the default color space in
31
+ CSS, and is often found in color palettes and color pickers. Colors expressed in
32
+ hexadecimal or CSS notation are typically in the sRGB color space.
33
+ </ p >
34
+
35
+ < p >
36
+ [page:LinearSRGBColorSpace] (“Linear-sRGB”) refers to the sRGB color space (above) with
37
+ linear transfer functions. Linear-sRGB is the working color space in three.js, used
38
+ throughout most of the rendering process. RGB components found in three.js materials
39
+ and shaders are in the Linear-sRGB color space.
40
+ D</ p >
41
+
42
+ < p >
43
+ For further background and usage, see < i > Color management</ i > .
44
+ </ p >
45
+
46
+ < h2 > Mouse Buttons</ h2 >
47
+ < code >
48
+ THREE.MOUSE.LEFT
49
+ THREE.MOUSE.MIDDLE
50
+ THREE.MOUSE.RIGHT
51
+ </ code >
28
52
29
53
< h2 > Source</ h2 >
30
54
Original file line number Diff line number Diff line change @@ -19,12 +19,36 @@ <h2>리비전 번호</h2>
19
19
three.js의 현재 리비전 번호([link:https://github.com/mrdoob/three.js/releases revision number]).
20
20
</ div >
21
21
22
- < h2 > 마우스 버튼</ h2 >
23
- < code >
24
- THREE.MOUSE.LEFT
25
- THREE.MOUSE.MIDDLE
26
- THREE.MOUSE.RIGHT
27
- </ code >
22
+ < h2 > Color Spaces</ h2 >
23
+ < code >
24
+ THREE.SRGBColorSpace
25
+ THREE.LinearSRGBColorSpace
26
+ </ code >
27
+
28
+ < p >
29
+ [page:SRGBColorSpace] (“sRGB”) refers to the color space defined by the Rec. 709 primaries, D65
30
+ white point, and nonlinear sRGB transfer functions. sRGB is the default color space in
31
+ CSS, and is often found in color palettes and color pickers. Colors expressed in
32
+ hexadecimal or CSS notation are typically in the sRGB color space.
33
+ </ p >
34
+
35
+ < p >
36
+ [page:LinearSRGBColorSpace] (“Linear-sRGB”) refers to the sRGB color space (above) with
37
+ linear transfer functions. Linear-sRGB is the working color space in three.js, used
38
+ throughout most of the rendering process. RGB components found in three.js materials
39
+ and shaders are in the Linear-sRGB color space.
40
+ D</ p >
41
+
42
+ < p >
43
+ For further background and usage, see < i > Color management</ i > .
44
+ </ p >
45
+
46
+ < h2 > 마우스 버튼</ h2 >
47
+ < code >
48
+ THREE.MOUSE.LEFT
49
+ THREE.MOUSE.MIDDLE
50
+ THREE.MOUSE.RIGHT
51
+ </ code >
28
52
29
53
< h2 > 소스 코드</ h2 >
30
54
Original file line number Diff line number Diff line change @@ -19,12 +19,36 @@ <h2>修订版本号</h2>
19
19
当前three.js的修订版本号( [link:https://github.com/mrdoob/three.js/releases revision number])。
20
20
</ div >
21
21
22
- < h2 > 鼠标按钮</ h2 >
23
- < code >
24
- THREE.MOUSE.LEFT
25
- THREE.MOUSE.MIDDLE
26
- THREE.MOUSE.RIGHT
27
- </ code >
22
+ < h2 > Color Spaces</ h2 >
23
+ < code >
24
+ THREE.SRGBColorSpace
25
+ THREE.LinearSRGBColorSpace
26
+ </ code >
27
+
28
+ < p >
29
+ [page:SRGBColorSpace] (“sRGB”) refers to the color space defined by the Rec. 709 primaries, D65
30
+ white point, and nonlinear sRGB transfer functions. sRGB is the default color space in
31
+ CSS, and is often found in color palettes and color pickers. Colors expressed in
32
+ hexadecimal or CSS notation are typically in the sRGB color space.
33
+ </ p >
34
+
35
+ < p >
36
+ [page:LinearSRGBColorSpace] (“Linear-sRGB”) refers to the sRGB color space (above) with
37
+ linear transfer functions. Linear-sRGB is the working color space in three.js, used
38
+ throughout most of the rendering process. RGB components found in three.js materials
39
+ and shaders are in the Linear-sRGB color space.
40
+ D</ p >
41
+
42
+ < p >
43
+ For further background and usage, see < i > Color management</ i > .
44
+ </ p >
45
+
46
+ < h2 > 鼠标按钮</ h2 >
47
+ < code >
48
+ THREE.MOUSE.LEFT
49
+ THREE.MOUSE.MIDDLE
50
+ THREE.MOUSE.RIGHT
51
+ </ code >
28
52
29
53
< h2 > 源代码</ h2 >
30
54
Original file line number Diff line number Diff line change 12
12
"Drawing lines" : " manual/en/introduction/Drawing-lines" ,
13
13
"Creating text" : " manual/en/introduction/Creating-text" ,
14
14
"Loading 3D models" : " manual/en/introduction/Loading-3D-models" ,
15
+ "Color management" : " manual/en/introduction/Color-management" ,
15
16
"Libraries and Plugins" : " manual/en/introduction/Libraries-and-Plugins" ,
16
17
"FAQ" : " manual/en/introduction/FAQ" ,
17
18
"Useful links" : " manual/en/introduction/Useful-links"
You can’t perform that action at this time.
0 commit comments