1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-25 05:51:41 +02:00
This commit is contained in:
Justin Lin
2019-07-04 14:46:40 +08:00
parent 3c830cc90d
commit b256bf7c90
4 changed files with 25 additions and 3 deletions

22
docs/lib2-px_sphere.md Normal file
View File

@@ -0,0 +1,22 @@
# px_sphere
Returns points that can be used to draw a pixel-style sphere.
**Since:** 2.0
## 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
include <pixel/px_sphere.scad>;
for(pt = px_sphere(10)) {
translate(pt)
cube(1, center = true);
}
![px_sphere](images/lib2-px_sphere-1.JPG)