Name

camera()

Examples
size(100, 100, P3D)
noFill()
background(204)
camera(70.0, 35.0, 120.0, 50.0, 50.0, 0.0, 
             0.0, 1.0, 0.0)
translate(50, 50, 0)
rotateX(-PI/6)
rotateY(PI/3)
box(45)
Description Sets the position of the camera through setting the eye position, the center of the scene, and which axis is facing upward. Moving the eye position and the direction it is pointing (the center of the scene) allows the images to be seen from different angles. The version without any parameters sets the camera to the default position, pointing to the center of the display window with the Y axis as up. The default values are camera(width/2.0, height/2.0, (height/2.0) / tan(PI*30.0 / 180.0), width/2.0, height/2.0, 0, 0, 1, 0). This function is similar to gluLookAt() in OpenGL, but it first clears the current camera settings.
Syntax
camera()
camera(eyeX, eyeY, eyeZ, centerX, centerY, centerZ, upX, upY, upZ)
Parameters
eyeXfloat: x-coordinate for the eye
eyeYfloat: y-coordinate for the eye
eyeZfloat: z-coordinate for the eye
centerXfloat: x-coordinate for the center of the scene
centerYfloat: y-coordinate for the center of the scene
centerZfloat: z-coordinate for the center of the scene
upXfloat: usually 0.0, 1.0, or -1.0
upYfloat: usually 0.0, 1.0, or -1.0
upZfloat: usually 0.0, 1.0, or -1.0
Related endCamera()
frustum()

Updated on Tue Feb 27 14:07:12 2024.

If you see any errors or have comments, please let us know.