mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-02-06 08:08:32 +01:00
29 lines
468 B
Markdown
29 lines
468 B
Markdown
# vx_union
|
|
|
|
It' slow, in case you want to create a union of two lists of points directly.
|
|
|
|
**Since:** 2.4
|
|
|
|
## Parameters
|
|
|
|
- `points1` : A list of points.
|
|
- `points2` : A list of points.
|
|
|
|
## Examples
|
|
|
|
use <voxel/vx_cylinder.scad>;
|
|
use <voxel/vx_sphere.scad>;
|
|
use <voxel/vx_union.scad>;
|
|
|
|
voxels = vx_union(
|
|
vx_cylinder([10, 15], 10),
|
|
vx_sphere(10)
|
|
);
|
|
|
|
for(pt = voxels) {
|
|
translate(pt)
|
|
cube(1, center = true);
|
|
}
|
|
|
|
![vx_union](images/lib3x-vx_union-1.JPG)
|