You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.0 KiB
80 lines
2.0 KiB
<!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>
|
|
|