forked from processing/processing-web-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathendCamera.xml
More file actions
executable file
·55 lines (38 loc) · 1002 Bytes
/
Copy pathendCamera.xml
File metadata and controls
executable file
·55 lines (38 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>endCamera()</name>
<category>Lights, Camera</category>
<subcategory>Camera</subcategory>
<usage>Web & Application</usage>
<example>
<image>beginCamera_.gif</image>
<code><![CDATA[
// The image for this example has not been updated.
size(100, 100, P3D);
noFill();
beginCamera();
camera();
rotateX(-PI/6);
endCamera();
translate(50, 50, 0);
rotateY(PI/3);
box(45);
]]></code>
</example>
<description><![CDATA[The <b>beginCamera()</b> and <b>endCamera()</b> functions enable advanced customization of the camera space. Please see the reference for <b>beginCamera()</b> for a description of how the functions are used.]]></description>
<syntax><![CDATA[
endCamera()
]]></syntax>
<parameter>
<label></label>
<description></description>
</parameter>
<returns>None</returns>
<related>
beginCamera()
</related>
<availability>1.0</availability>
<type>Function</type>
<partof>Core</partof>
<level>Extended</level>
</root>