| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <title>QuadMesh - 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="EventDispatcher.html">EventDispatcher</a> → <a href="Object3D.html">Object3D</a> → <a href="Mesh.html">Mesh</a> → </p>
- <h1 translate="no">QuadMesh</h1>
- <section>
- <header>
- <div class="class-description"><p>This module is a helper for passes which need to render a full
- screen effect which is quite common in context of post processing.</p>
- <p>The intended usage is to reuse a single quad mesh for rendering
- subsequent passes by just reassigning the <code>material</code> reference.</p>
- <p>Note: This module can only be used with <code>WebGPURenderer</code>.</p></div>
- </header>
- <article>
- <div class="container-overview">
- <h2>Constructor</h2>
- <h3 class="name name-method" id="QuadMesh" translate="no">new <a href="#QuadMesh">QuadMesh</a><span class="signature">( material : <span class="param-type">Material</span> )</span> </h3>
- <div class="method">
- <div class="description">
- <p>Constructs a new quad mesh.</p>
- </div>
- <table class="params">
- <tbody>
- <tr>
- <td class="name"><code>material</code></td>
- <td class="description last"><p>The material to render the quad mesh with.<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="camera" translate="no">.<a href="#camera">camera</a><span class="type-signature"> : <a href="OrthographicCamera.html">OrthographicCamera</a></span> <span class="type-signature">(readonly) </span></h3>
- <div class="description">
- <p>The camera to render the quad mesh with.</p>
- </div>
- </div>
- <div class="member">
- <h3 class="name" id="isQuadMesh" translate="no">.<a href="#isQuadMesh">isQuadMesh</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>
- <h2 class="subsection-title">Methods</h2>
- <h3 class="name name-method" id="render" translate="no">.<a href="#render">render</a><span class="signature">( renderer : <span class="param-type">Renderer</span> )</span> </h3>
- <div class="method">
- <div class="description">
- <p>Renders the quad mesh</p>
- </div>
- <table class="params">
- <tbody>
- <tr>
- <td class="name"><code>renderer</code></td>
- <td class="description last"><p>The renderer.</p></td>
- </tr>
- </tbody>
- </table>
- </div>
- <h3 class="name name-method" id="renderAsync" translate="no">.<a href="#renderAsync">renderAsync</a><span class="signature">( renderer : <span class="param-type">Renderer</span> )</span><span class="type-signature"> : Promise</span> <span class="type-signature">(async) </span></h3>
- <div class="method">
- <div class="description">
- <p>Async version of <code>render()</code>.</p>
- </div>
- <table class="params">
- <tbody>
- <tr>
- <td class="name"><code>renderer</code></td>
- <td class="description last"><p>The renderer.</p></td>
- </tr>
- </tbody>
- </table>
- <dl class="details">
- <dt class="important tag-deprecated"><strong>Deprecated:</strong> Yes</dt>
- </dl>
- <dl class="details">
- <dt class="tag-returns"><strong>Returns:</strong> A Promise that resolves when the render has been finished.</dt>
- </dl>
- </div>
- <h2 class="subsection-title">Source</h2>
- <p>
- <a href="https://github.com/mrdoob/three.js/blob/master/src/renderers/common/QuadMesh.js" target="_blank" rel="noopener" translate="no">src/renderers/common/QuadMesh.js</a>
- </p>
- </article>
- </section>
- <script src="../scripts/linenumber.js"></script>
- <script src="../scripts/page.js"></script>
- </body>
- </html>
|