source: other-projects/playing-in-the-street/summer-2013/trunk/Playing-in-the-Street-WPF/Content/Web/mrdoob-three.js-4862f5f/docs/api/extras/core/Path.html@ 28897

Last change on this file since 28897 was 28897, checked in by davidb, 10 years ago

GUI front-end to server base plus web page content

File size: 1.5 KB
Line 
1<!DOCTYPE html>
2<html lang="en">
3 <head>
4 <meta charset="utf-8" />
5 <script src="../../../list.js"></script>
6 <script src="../../../page.js"></script>
7 <link type="text/css" rel="stylesheet" href="../../../page.css" />
8 </head>
9 <body>
10 <h1>[name]</h1>
11
12 <div class="desc">A 2d path representation, comprising of points, lines, and cubes, similar to the html5 2d canvas api. It extends CurvePath.</div>
13
14
15 <h2>Constructor</h2>
16
17
18 <h3>[name]([page:todo points])</h3>
19 <div>
20 points -- todo
21 </div>
22 <div>
23 todo
24 </div>
25
26
27 <h2>Properties</h2>
28
29
30 <h3>.[page:array actions]</h3>
31 <div>
32 todo
33 </div>
34
35 <h2>Methods</h2>
36
37 <h3>.fromPoints ( vectors ) </h3>
38 <div>todo</div>
39
40 <h3>.moveTo ( x, y ) </h3>
41 <div>todo</div>
42
43 <h3>.lineTo ( x, y ) </h3>
44 <div>todo</div>
45
46 <h3>.quadraticCurveTo ( aCPx, aCPy, aX, aY ) </h3>
47 <div>todo</div>
48
49 <h3>.bezierCurveTo ( aCP1x, aCP1y, aCP2x, aCP2y, aX, aY ) </h3>
50 <div>todo</div>
51
52 <h3>.splineThru ( pts /*Array of Vector*/ ) </h3>
53 <div>todo</div>
54
55 <h3>.arc ( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) </h3>
56 <div>todo</div>
57
58 <h3>.absarc ( aX, aY, aRadius, aStartAngle, aEndAngle, aClockwise ) </h3>
59 <div>todo</div>
60
61 <h3>.ellipse ( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise ) </h3>
62 <div>todo</div>
63
64 <h3>.absellipse ( aX, aY, xRadius, yRadius, aStartAngle, aEndAngle, aClockwise ) </h3>
65 <div>todo</div>
66
67 <h3>.toShapes () </h3>
68 <div>todo</div>
69
70
71 <h2>Source</h2>
72
73 [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
74 </body>
75</html>
Note: See TracBrowser for help on using the repository browser.