Name

sphereDetail()

Examples
size(100, 400, P3D)

background(200)
stroke(255, 50)
for i in range(5):
  pushMatrix()
  translate(50, 50 + (i*75), 0)
  fill(i * 30, 0, 160)
  sphereDetail(i * 5)
  sphere(30)
  popMatrix()
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, e.g. using less detail for smaller spheres or ones further away from the camera. To control the detail of the horizontal and vertical resolution independently, use the version of the functions with two parameters.
Syntax
sphereDetail(res)
sphereDetail(ures, vres)
Parameters
resint: number of segments (minimum 3) used per full circle revolution
uresint: number of segments used longitudinally per full circle revolution
vresint: number of segments used latitudinally from top to bottom
Related sphere()

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

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