home

Set Ops

Union

union

Combines two or more objects into one.

						
//!OpenSCAD
union(){
	//Object1
	//Object2
}						
					

Difference

difference

Subtracts one or more objects from the first object in the list.

						
//!OpenSCAD
difference() {
	//Object1
	//Object2
}						
					

Intersection

intersection

Returns the intersection, or shared space, of two or more objects.

						
//!OpenSCAD
intersection() {
	//Object1
	//Object2
}						
					

Hull

hull

Combines two or more objects by “wrapping” them together in a hull.

						
//!OpenSCAD
hull() {
	//Object1
	//Object2
}