mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-01-17 14:18:13 +01:00
511 B
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 tofalse
. Set ittrue
if you want a filled sphere.thickness
: Default to 1. The thickness whenfilled
isfalse
. The value must be an integer.
Examples
use <voxel/vx_sphere.scad>
for(pt = vx_sphere(10)) {
translate(pt)
cube(1, center = true);
}