2021-12-03 09:43:24 +08:00
|
|
|
# polar_zonohedra
|
2021-12-03 09:30:06 +08:00
|
|
|
|
|
|
|
Creates a [polar zonohedra](https://mathworld.wolfram.com/PolarZonohedron.html).
|
|
|
|
|
|
|
|
**Since:** 3.2
|
|
|
|
|
|
|
|
## Parameters
|
|
|
|
|
|
|
|
- `n` : n equal rhombs surrounding one vertex. (rotational symmetry)
|
2021-12-03 09:45:52 +08:00
|
|
|
- `theta` : the pitch angle of the edges. Default to 35.5.
|
2021-12-03 09:30:06 +08:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
2022-06-06 13:11:46 +08:00
|
|
|
use <polyhedra/polar_zonohedra.scad>
|
2021-12-03 09:30:06 +08:00
|
|
|
|
|
|
|
for(n = [3:8]) {
|
|
|
|
translate([0.5 * n * (n - 3), 0, 0])
|
|
|
|
polar_zonohedra(n);
|
|
|
|
}
|
|
|
|
|
|
|
|
![polar_zonohedra](images/lib3x-polyhedra_polar_zonohedra-1.JPG)
|
|
|
|
|