|
@@ -2,7 +2,7 @@
|
|
<html lang="en">
|
|
<html lang="en">
|
|
<head>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta charset="utf-8" />
|
|
- <base href="../../" />
|
|
|
|
|
|
+ <base href="../../../" />
|
|
<script src="list.js"></script>
|
|
<script src="list.js"></script>
|
|
<script src="page.js"></script>
|
|
<script src="page.js"></script>
|
|
<link type="text/css" rel="stylesheet" href="page.css" />
|
|
<link type="text/css" rel="stylesheet" href="page.css" />
|
|
@@ -35,12 +35,12 @@
|
|
attribute is storing a 3-component vector (such as a position, normal, or color), then itemSize should be 3.
|
|
attribute is storing a 3-component vector (such as a position, normal, or color), then itemSize should be 3.
|
|
<br /><br />
|
|
<br /><br />
|
|
|
|
|
|
- [page:Boolean normalized] -- (optional) Indicates how the underlying data in the buffer maps
|
|
|
|
- to the values in the GLSL code. For instance, if [page:TypedArray array] is an instance of
|
|
|
|
- UInt16Array, and [page:Boolean normalized] is true, the values 0 - +65535 in the array
|
|
|
|
|
|
+ [page:Boolean normalized] -- (optional) Applies to integer data only. Indicates how the underlying data
|
|
|
|
+ in the buffer maps to the values in the GLSL code. For instance, if [page:TypedArray array] is an instance
|
|
|
|
+ of UInt16Array, and [page:Boolean normalized] is true, the values 0 - +65535 in the array
|
|
data will be mapped to 0.0f - +1.0f in the GLSL attribute. An Int16Array (signed) would map
|
|
data will be mapped to 0.0f - +1.0f in the GLSL attribute. An Int16Array (signed) would map
|
|
from -32767 - +32767 to -1.0f - +1.0f. If [page:Boolean normalized] is false, the values
|
|
from -32767 - +32767 to -1.0f - +1.0f. If [page:Boolean normalized] is false, the values
|
|
- will be converted to floats which contain the exact value, i.e. 32767 becomes 32767.0f.
|
|
|
|
|
|
+ will be converted to floats unmodified, i.e. 32767 becomes 32767.0f.
|
|
</p>
|
|
</p>
|
|
|
|
|
|
<h2>Properties</h2>
|
|
<h2>Properties</h2>
|
|
@@ -99,12 +99,12 @@
|
|
|
|
|
|
<h3>[property:Function onUploadCallback]</h3>
|
|
<h3>[property:Function onUploadCallback]</h3>
|
|
<p>
|
|
<p>
|
|
- A callback function that is executed after the Renderer has transfered the attribute array data to the GPU.
|
|
|
|
|
|
+ A callback function that is executed after the Renderer has transferred the attribute array data to the GPU.
|
|
</p>
|
|
</p>
|
|
|
|
|
|
<h3>[property:Object updateRange]</h3>
|
|
<h3>[property:Object updateRange]</h3>
|
|
<p>Object containing:<br />
|
|
<p>Object containing:<br />
|
|
- [page:Integer offset]: Default is *0*. Position at whcih to start update.<br />
|
|
|
|
|
|
+ [page:Integer offset]: Default is *0*. Position at which to start update.<br />
|
|
[page:Integer count]: Default is *-1*, which means don't use update ranges. <br /><br />
|
|
[page:Integer count]: Default is *-1*, which means don't use update ranges. <br /><br />
|
|
|
|
|
|
This can be used to only update some components of stored vectors (for example, just the component
|
|
This can be used to only update some components of stored vectors (for example, just the component
|
|
@@ -120,6 +120,9 @@
|
|
<h3>[method:BufferAttribute clone]() </h3>
|
|
<h3>[method:BufferAttribute clone]() </h3>
|
|
<p>Return a copy of this bufferAttribute.</p>
|
|
<p>Return a copy of this bufferAttribute.</p>
|
|
|
|
|
|
|
|
+ <h3>[method:BufferAttribute copy]( [param:BufferAttribute bufferAttribute] )</h3>
|
|
|
|
+ <p>Copies another BufferAttribute to this BufferAttribute.</p>
|
|
|
|
+
|
|
<h3>[method:BufferAttribute copyArray]( array ) </h3>
|
|
<h3>[method:BufferAttribute copyArray]( array ) </h3>
|
|
<p>Copy the array given here (which can be a normal array or TypedArray) into
|
|
<p>Copy the array given here (which can be a normal array or TypedArray) into
|
|
[page:BufferAttribute.array array].<br /><br />
|
|
[page:BufferAttribute.array array].<br /><br />
|
|
@@ -160,7 +163,7 @@
|
|
Sets the value of the onUploadCallback property.<br /><br />
|
|
Sets the value of the onUploadCallback property.<br /><br />
|
|
|
|
|
|
In the [example:webgl_buffergeometry WebGL / Buffergeometry] this is used to free memory
|
|
In the [example:webgl_buffergeometry WebGL / Buffergeometry] this is used to free memory
|
|
- after the buffer has been transfered to the GPU.
|
|
|
|
|
|
+ after the buffer has been transferred to the GPU.
|
|
</p>
|
|
</p>
|
|
|
|
|
|
<h3>[method:BufferAttribute set] ( [param:Array value], [param:Integer offset] ) </h3>
|
|
<h3>[method:BufferAttribute set] ( [param:Array value], [param:Integer offset] ) </h3>
|