Reference for Processing (BETA) version 0135+. If you have a previous version, use the reference included with your software. If you see any errors or have any comments, let us know.
Name |
sphereDetail() |
Examples |
void draw() {
background(200);
stroke(255,50);
translate(50,50,0);
rotateX(mouseY*0.05);
rotateY(mouseX*0.05);
fill(mouseX*2,0,160);
sphereDetail(mouseX/4);
sphere(40);
} |
Description |
Controls the detail used to render a sphere by adjusting the number of vertices of the sphere mesh. The default resolution is 30, which creates a fairly detailed sphere definition with vertices every 360/30 = 12 degrees. If you're going to render a great number of spheres per frame, it is advised to reduce the level of detail using this function. The setting stays active until sphereDetail() is called again with a new parameter and so should not be called prior to every sphere() statement, unless you wish to render spheres with different settings, eg. using less detail for smaller spheres or ones further away from the camera. |
Syntax |
sphereDetail(n); |
Parameters |
n |
int: number of segments (minimum of 3) used per full circle revolution |
|
Usage |
Web & Application |
Related |
sphere()
|
Updated on February 09, 2008 04:38:53pm PST