meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
en:design_guide_union [2020/12/04 23:49]
JSCAD Editor
en:design_guide_union [2020/12/08 06:53] (current)
JSCAD Editor
Line 1: Line 1:
 ==== Union ==== ==== Union ====
  
-Several shapes can be combined (merged) into a single shape. The result is the logical union of the shapes. The combining of smaller obects together allows easier transformations, etc.+{{ :wiki:jscad-union.png?nolink | Union}} 
 + 
 +Several shapes can be combined (merged) into a single shape, creating complex 'parts'. The combining of smaller obects together allows the 'part' to be used in other operations, transformations, etc.
  
 <code javascript> <code javascript>
-let newshape = union(square({size: 10}), cylinder({radius: 4, heigth: 12})+const newshape = union(cube({size: 10}), cylinder({radius: 4, heigth: 14})
 </code> </code>