1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 22:28:16 +01:00
dotSCAD/docs/lib2x-vx_sphere.md
2020-05-20 17:11:06 +08:00

512 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