123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <!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:InterleavedBuffer interleavedBuffer], [page:Integer itemSize], [page:Integer offset], [page:Boolean normalized] )</h3>
- <div>
- </div>
- <h2>Properties</h2>
- <h3>[property:InterleavedBuffer data]</h3>
- <div>
- The [page:InterleavedBuffer InterleavedBuffer] instance passed in the constructor.
- </div>
- <h3>[property:TypedArray array]</h3>
- <div>
- The value of [page:InterleavedBufferAttribute.data data].array.
- </div>
- <h3>[property:Integer count]</h3>
- <div>
- The value of [page:InterleavedBufferAttribute.data data].count.
- If the buffer is storing a 3-component vector (such as a position, normal, or color),
- then this will count the number of such vectors stored.
- </div>
- <h3>[property:Integer itemSize]</h3>
- <div>
- </div>
- <h3>[property:Integer offset]</h3>
- <div>
- </div>
- <h3>[property:Boolean normalized]</h3>
- <div>
- Default is *true*.
- </div>
- <h3>[property:Boolean isInterleavedBufferAttribute]</h3>
- <div>
- Default is *true*.
- </div>
- <h2>Methods</h2>
- <h3>[method:null getX]( index ) </h3>
- <div>
- </div>
- <h3>[method:null getY]( index ) </h3>
- <div>
- </div>
- <h3>[method:null getZ]( index ) </h3>
- <div>
- </div>
- <h3>[method:null getW]( index ) </h3>
- <div>
- </div>
- <h3>[method:null setX]( index, x ) </h3>
- <div>
- </div>
- <h3>[method:null setY]( index, y ) </h3>
- <div>
- </div>
- <h3>[method:null setZ]( index, z ) </h3>
- <div>
- </div>
- <h3>[method:null setXY]( index, x, y ) </h3>
- <div>
- </div>
- <h3>[method:null setXYZ]( index, x, y, z ) </h3>
- <div>
- </div>
- <h3>[method:null setXYZW]( index, x, y, z, w ) </h3>
- <div>
- </div>
- <h2>Source</h2>
- [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
- </body>
- </html>
|