1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <base href="../../../" />
- <script src="page.js"></script>
- <link type="text/css" rel="stylesheet" href="page.css" />
- </head>
- <body>
- <h1>Core Constants</h1>
- <h2>Revision Number</h2>
- <code>
- THREE.REVISION
- </code>
- <div id="rev">
- The current three.js [link:https://github.com/mrdoob/three.js/releases revision number].
- </div>
- <h2>Color Spaces</h2>
- <code>
- THREE.NoColorSpace
- THREE.SRGBColorSpace
- THREE.LinearSRGBColorSpace
- </code>
- <p>
- [page:NoColorSpace] defines no specific color space.
- </p>
- <p>
- [page:SRGBColorSpace] (“sRGB”) refers to the color space defined by the Rec. 709 primaries, D65
- white point, and nonlinear sRGB transfer functions. sRGB is the default color space in
- CSS, and is often found in color palettes and color pickers. Colors expressed in
- hexadecimal or CSS notation are typically in the sRGB color space.
- </p>
- <p>
- [page:LinearSRGBColorSpace] (“Linear-sRGB”) refers to the sRGB color space (above) with
- linear transfer functions. Linear-sRGB is the working color space in three.js, used
- throughout most of the rendering process. RGB components found in three.js materials
- and shaders are in the Linear-sRGB color space.
- </p>
- <p>
- For further background and usage, see <i>Color management</i>.
- </p>
- <h2>Mouse Buttons</h2>
- <code>
- THREE.MOUSE.LEFT
- THREE.MOUSE.MIDDLE
- THREE.MOUSE.RIGHT
- THREE.MOUSE.ROTATE
- THREE.MOUSE.DOLLY
- THREE.MOUSE.PAN
- </code>
- <p>
- The constants LEFT and ROTATE have the same underlying value.
- The constants MIDDLE and DOLLY have the same underlying value.
- The constants RIGHT and PAN have the same underlying value.
- </p>
- <h2>Touch Actions</h2>
- <code>
- THREE.TOUCH.ROTATE
- THREE.TOUCH.PAN
- THREE.TOUCH.DOLLY_PAN
- THREE.TOUCH.DOLLY_ROTATE
- </code>
- <h2>Source</h2>
- <p>
- [link:https://github.com/mrdoob/three.js/blob/master/src/constants.js src/constants.js]
- </p>
- </body>
- </html>
|