123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!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.SRGBColorSpace
- THREE.LinearSRGBColorSpace
- </code>
- <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.
- D</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
- </code>
- <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>
|