123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <base href="../../" />
- <script src="list.js"></script>
- <script src="page.js"></script>
- <link type="text/css" rel="stylesheet" href="page.css" />
- </head>
- <body>
- <h1>[name]</h1>
- <div class="desc">
- </div>
- <h2>Constructor</h2>
- <h3>[name]( [page:TypedArray array], [page:Integer stride] )</h3>
- <div>
- </div>
- <h2>Properties</h2>
- <h3>[property:Array array]</h3>
- <div>
- </div>
- <h3>[property:Integer stride]</h3>
- <div>
- </div>
- <h3>[property:Integer count]</h3>
- <div>
- Gives the total number of elements in the array.
- </div>
- <h3>[property:Boolean dynamic]</h3>
- <div>
- Default is *false*.
- </div>
- <h3>[property:Object updateRange]</h3>
- <div>
- Object containing offset and count.
- </div>
- <h3>[property:Number updateRange.offset]</h3>
- <div>
- DEfault is *0*.
- </div>
- <h3>[property:Number updateRange.count]</h3>
- <div>
- Default is *-1*.
- </div>
- <h3>[property:Integer version]</h3>
- <div>
- A version number, incremented every time the needsUpdate property is set to true.
- </div>
- <h3>[property:Integer isInterleavedBuffer]</h3>
- <div>
- Default is *true*.
- </div>
- <h3>[property:Integer needsUpdate]</h3>
- <div>
- Default is *false*. Setting this to true increments [page:InterleavedBuffer.version version].
- </div>
- <h2>Methods</h2>
- <h3>[method:null setArray] ( [page:TypedArray array] ) </h3>
- <div>
- array - must be a Typed Array.
- </div>
- <h3>[method:InterleavedBuffer setDynamic] ( [page:Boolean value] ) </h3>
- <div>
- Set [page:InterleavedBuffer.dynamic dynamic] to value.
- </div>
- <h3>[method:InterleavedBuffer copy]( source ) </h3>
- <div>
- Copy the array, count, stride and value of dynamic to this.
- </div>
- <h3>[method:InterleavedBuffer copyAt]( index1, attribute, index2 ) </h3>
- <div>
- </div>
- <h3>[method:InterleavedBuffer set]( value, offset ) </h3>
- <div>
- </div>
- <h3>[method:InterleavedBuffer clone]( index, x, y ) </h3>
- <div>
- </div>
- <h2>Source</h2>
- [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
- </body>
- </html>
|