1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <!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>
- [page:Curve] →
- <h1>[name]</h1>
- <div class="desc">
- An abstract base class extending [page:Curve]. A CurvePath is simply an array of connected curves,
- but retains the api of a curve.
- </div>
- <h2>Constructor</h2>
- <h3>[name]()</h3>
- <div>
- The constructor take no parameters.
- </div>
- <h2>Properties</h2>
- <div>See the base [page:Curve] class for common properties.</div>
- <h3>[property:array curves]</h3>
- <div>The array of [page:Curve Curves].</div>
- <h3>[property:boolean autoClose]</h3>
- <div>Whether or not to automatically close the path.</div>
- <h2>Methods</h2>
- <div>See the base [page:Curve] class for common methods.</div>
- <h3>[method:null add]( [page:Curve curve] )</h3>
- <div>Add a curve to the [page:.curves] array.</div>
- <h3>[method:null closePath]()</h3>
- <div>Adds a [page:LineCurve lineCurve] to close the path.</div>
- <h3>[method:Geometry createGeometry]( [page:Vector3 points] )</h3>
- <div>
- points -- An array of [page:Vector3 Vector3s]<br /><br />
- Creates a geometry from points
- </div>
- <h3>[method:Geometry createPointsGeometry]( [page:Integer divisions] )</h3>
- <div>
- divisions -- How many segments to create. Defaults to *12*.<br /><br />
- Creates a [page:Geometry] object comprised of [page:Vector3 Vector3s], for example
- to be used with [page:Line] or [page:Points]. Uses [page:Curve.getPoints]() for the division.
- </div>
- <h3>[method:Geometry createSpacedPointsGeometry]( [page:Integer divisions] )</h3>
- <div>
- divisions -- How many segments to create. Defaults to *12*.<br /><br />
- Creates a [page:Geometry] object comprised of [page:Vector3]s that are equidistant, for example
- to be used with [page:Line] or [page:Points]. Uses [page:Curve.getSpacedPoints]() for the division.
- </div>
- <h3>[method:Float getCurveLengths]()</h3>
- <div>Adds together the lengths of the curves in the [page:.curves] array.</div>
- <h2>Source</h2>
- [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
- </body>
- </html>
|