1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 06:08:31 +01:00
dotSCAD/docs/lib3x-vx_sphere.md
2022-06-06 13:11:46 +08:00

511 B

vx_sphere

Returns points that can be used to draw a voxel-style sphere.

Since: 2.4

Parameters

  • radius : The radius of the sphere. The value must be an integer.
  • filled : Default to false. Set it true if you want a filled sphere.
  • thickness: Default to 1. The thickness when filled is false. The value must be an integer.

Examples

use <voxel/vx_sphere.scad>

for(pt = vx_sphere(10)) {
	translate(pt)
		cube(1, center = true);
}

vx_sphere