meta data for this page
  •  

Differences

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

Link to this comparison view

Next revision
Previous revision
en:design_guide_hull [2020/11/28 03:04]
JSCAD Editor created
en:design_guide_hull [2020/12/08 06:54] (current)
JSCAD Editor
Line 1: Line 1:
 ==== Hull ==== ==== Hull ====
 +
 +{{ :wiki:jscad-hull.png?nolink | Hull}}
  
 Several shapes can be combined together to form the convex hull, i.e. sum of the outside shells. This includes irregular shapes such as combining a circle with a square. Several shapes can be combined together to form the convex hull, i.e. sum of the outside shells. This includes irregular shapes such as combining a circle with a square.
- 
-//Note: Convex hulls can be viewed as elastic wrapping around several shapes.// 
- 
-EXAMPLE 
  
 //[[https://en.m.wikipedia.org/wiki/Convex_hull|Learn more about convex hull at Wikipedia.org]]// //[[https://en.m.wikipedia.org/wiki/Convex_hull|Learn more about convex hull at Wikipedia.org]]//
  
 <code javascript> <code javascript>
-let h = hull(square(10)translate([510, 15], circle(10)))+const newshape = hull(shape1shape2shape3)
 </code> </code>