source: other-projects/playing-in-the-street/summer-2013/trunk/Playing-in-the-Street-WPF/Content/Web/mrdoob-three.js-4862f5f/docs/api/extras/helpers/PointLightHelper.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.1 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">This display a helper for a pointLight </div>
13
14
15 <h2>Example</h2>
16
17 <code>var pointLight = new THREE.PointLight( 0xff0000, 1, 100 );
18 pointLight.position.set( 10, 10, 10 );
19 scene.add( pointLight );
20
21 var sphereSize = 1;
22 var pointLightHelper = new THREE.PointLightHelper( pointLight, sphereSize );
23 scene.add( pointLightHelper );
24 </code>
25
26
27 <h2>Constructor</h2>
28
29 <h3>[name]([page:todo light], [page:todo sphereSize])</h3>
30 <div>
31 light -- todo <br />
32 sphereSize -- todo
33 </div>
34 <div>
35 todo
36 </div>
37
38
39 <h2>Properties</h2>
40
41 <h3>.[page:Mesh lightSphere]</h3>
42 <div>
43 todo
44 </div>
45
46 <h3>.[page:PointLight light]</h3>
47 <div>
48 todo
49 </div>
50
51
52 <h2>Methods</h2>
53
54 <h3>.update() [page:todo]</h3>
55 <div>
56 todo
57 </div>
58
59 <h2>Source</h2>
60
61 [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
62 </body>
63</html>
Note: See TracBrowser for help on using the repository browser.