123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- <!DOCTYPE html>
- <html lang="it">
- <head>
- <meta charset="utf-8" />
- <base href="../../../" />
- <script src="page.js"></script>
- <link type="text/css" rel="stylesheet" href="page.css" />
- </head>
- <body>
- <h1>[name]</h1>
- <p class="desc">
- Proprietà del grafo della scena bufferizzata che consente l'accumulo ponderato (weighted); utilizzata internamente.
- </p>
- <h2>Costruttore</h2>
- <h3>[name]( [param:PropertyBinding binding], [param:String typeName], [param:Number valueSize] )</h3>
- <p>
- -- binding <br />
- -- typeName <br />
- -- valueSize <br />
- </p>
- <h2>Proprietà</h2>
- <h3>[property:PropertyBinding binding]</h3>
- <p>
- </p>
- <h3>[property:TypedArray buffer]</h3>
- <p>
- Buffer con dimensione [page:PropertyMixer valueSize] * 4. <br /><br />
- Ha il seguente layout: [ incoming | accu0 | accu1 | orig ]<br /><br />
- Gli interpolatori possono usare .buffer come loro .result e i dati vanno quindi in 'incoming'.
- 'accu0' e 'accu1' sono usati come frame-interleaved per il risultato cumulativo e
- vengono confrontati per rilevare le modifiche. 'orig' memorizza lo stato originale
- della proprietà.
- </p>
- <h3>[property:Number cumulativeWeight]</h3>
- <p>
- Il valore di default è `0`.
- </p>
- <h3>[property:Number cumulativeWeightAdditive]</h3>
- <p>
- Il valore di default è `0`.
- </p>
- <h3>[property:Number valueSize]</h3>
- <p>
- </p>
- <h3>[property:Number referenceCount]</h3>
- <p>
- Il valore di default è `0`.
- </p>
- <h3>[property:Number useCount]</h3>
- <p>
- Il valore di default è `0`.
- </p>
- <h2>Metodi</h2>
- <h3>[method:undefined accumulate]( [param:Number accuIndex], [param:Number weight] )</h3>
- <p>
- Accumula i dati nella regione 'incoming' del [page:PropertyMixer.buffer buffer][accuIndex] in 'accu[i]'.<br />
- Se weight è `0` non fa nulla.
- </p>
- <h3>[method:undefined accumulateAdditive]( [param:Number weight] )</h3>
- <p>
- Accumula i dati nella regione 'incoming' in 'add'.<br />
- Se weight è `0` non fa nulla.
- </p>
- <h3>[method:undefined apply]( [param:Number accuIndex] )</h3>
- <p>
- Applica lo stato del [page:PropertyMixer.buffer buffer] 'accu[i]' al binding quando gli 'accus' differiscono.
- </p>
- <h3>[method:undefined saveOriginalState]( )</h3>
- <p>
- Ricorda lo stato della proprietà vincolata e lo copia in entrambi gli 'accus'.
- </p>
- <h3>[method:undefined restoreOriginalState]( )</h3>
- <p>
- Applica lo stato preso precedentemente tramite 'saveOriginalState' al binding.
- </p>
- <h2>Source</h2>
- <p>
- [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
- </p>
- </body>
- </html>
|