OSDN Git Service

three.jsをThirdPartyに追加
[webglgame/webgl_framework.git] / webglFramework / Thirdparty / three.js-master / docs / examples / quickhull / VertexNode.html
1 <!DOCTYPE html>
2 <html lang="en">
3         <head>
4                 <meta charset="utf-8" />
5                 <base href="../../" />
6                 <script src="list.js"></script>
7                 <script src="page.js"></script>
8                 <link type="text/css" rel="stylesheet" href="page.css" />
9         </head>
10         <body>
11                 <h1>[name]</h1>
12
13                 <div class="desc">
14                         A vertex as a double linked list node.
15                 </div>
16
17
18                 <h2>Constructor</h2>
19
20
21                 <h3>[name]( [page:Vector3 point] )</h3>
22                 [page:Vector3 point] - [page:Vector3] A point (x, y, z) in 3D space.<br /><br />
23
24                 </div>
25
26                 <h2>Properties</h2>
27
28                 <h3>[property:Vector3 point]</h3>
29                 <div>
30                         A point (x, y, z) in 3D space. Default is undefined.
31                 </div>
32
33                 <h3>[property:VertexNode prev]</h3>
34                 <div>
35                         Reference to the previous vertex in the double linked list. Default is null.
36                 </div>
37
38                 <h3>[property:VertexNode next]</h3>
39                 <div>
40                         Reference to the next vertex in the double linked list. Default is null.
41                 </div>
42
43                 <h3>[property:Face face]</h3>
44                 <div>
45                         Reference to the face that is able to see this vertex. Default is undefined.
46                 </div>
47
48                 <h2>Source</h2>
49
50                 [link:https://github.com/mrdoob/three.js/blob/master/examples/js/QuickHull.js examples/js/QuickHull.js]
51         </body>
52 </html>