| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>NodeVarying - Three.js Docs</title>
- <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
- <script src="../scripts/highlight.min.js"></script>
- <link type="text/css" rel="stylesheet" href="../styles/highlight-three.css">
- <link type="text/css" rel="stylesheet" href="../styles/page.css">
- </head>
- <body>
- <p class="inheritance" translate="no"><a href="NodeVar.html">NodeVar</a> → </p>
- <h1 translate="no">NodeVarying</h1>
- <section>
- <header>
- <div class="class-description"><p><a href="NodeBuilder.html">NodeBuilder</a> is going to create instances of this class during the build process
- of nodes. They represent the final shader varyings that are going to be generated
- by the builder. An array of node varyings is maintained in <a href="NodeBuilder.html#varyings">NodeBuilder#varyings</a> for
- this purpose.</p></div>
- </header>
- <article>
- <div class="container-overview">
- <h2>Constructor</h2>
- <h3 class="name name-method" id="NodeVarying" translate="no">new <a href="#NodeVarying">NodeVarying</a><span class="signature">( name : <span class="param-type">string</span>, type : <span class="param-type">string</span>, interpolationType : <span class="param-type">string</span>, interpolationSampling : <span class="param-type">string</span> )</span> </h3>
- <div class="method">
- <div class="description">
- <p>Constructs a new node varying.</p>
- </div>
- <table class="params">
- <tbody>
- <tr>
- <td class="name"><code>name</code></td>
- <td class="description last"><p>The name of the varying.</p></td>
- </tr>
- <tr>
- <td class="name"><code>type</code></td>
- <td class="description last"><p>The type of the varying.</p></td>
- </tr>
- <tr>
- <td class="name"><code>interpolationType</code></td>
- <td class="description last"><p>The interpolation type of the varying.<br/>Default is <code>null</code>.</p></td>
- </tr>
- <tr>
- <td class="name"><code>interpolationSampling</code></td>
- <td class="description last"><p>The interpolation sampling type of the varying.<br/>Default is <code>null</code>.</p></td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <h2 class="subsection-title">Properties</h2>
- <div class="member">
- <h3 class="name" id="interpolationSampling" translate="no">.<a href="#interpolationSampling">interpolationSampling</a><span class="type-signature"> : string</span> </h3>
- <div class="description">
- <p>The interpolation sampling type of varying data.<br/>Default is <code>null</code>.</p>
- </div>
- </div>
- <div class="member">
- <h3 class="name" id="interpolationType" translate="no">.<a href="#interpolationType">interpolationType</a><span class="type-signature"> : string</span> </h3>
- <div class="description">
- <p>The interpolation type of the varying data.<br/>Default is <code>null</code>.</p>
- </div>
- </div>
- <div class="member">
- <h3 class="name" id="isNodeVarying" translate="no">.<a href="#isNodeVarying">isNodeVarying</a><span class="type-signature"> : boolean</span> <span class="type-signature">(readonly) </span></h3>
- <div class="description">
- <p>This flag can be used for type testing.<br/>Default is <code>true</code>.</p>
- </div>
- </div>
- <div class="member">
- <h3 class="name" id="needsInterpolation" translate="no">.<a href="#needsInterpolation">needsInterpolation</a><span class="type-signature"> : boolean</span> </h3>
- <div class="description">
- <p>Whether this varying requires interpolation or not. This property can be used
- to check if the varying can be optimized for a variable.<br/>Default is <code>false</code>.</p>
- </div>
- </div>
- <h2 class="subsection-title">Source</h2>
- <p>
- <a href="https://github.com/mrdoob/three.js/blob/master/src/nodes/core/NodeVarying.js" target="_blank" rel="noopener" translate="no">src/nodes/core/NodeVarying.js</a>
- </p>
- </article>
- </section>
- <script src="../scripts/linenumber.js"></script>
- <script src="../scripts/page.js"></script>
- </body>
- </html>
|