implicit-0.0.0: Math-inspired programmatic 2&3D CAD: CSG, bevels, and shells; gcode export..

Graphics.Implicit.Definitions

Synopsis

Documentation

type ℝ2 = (, )Source

type ℝ3 = (, , )Source

type = IntSource

type Polyline = [ℝ2]Source

A chain of line segments, as in SVG eg. [(0,0), (0.5,1), (1,0)] ---> /\

In Implicit CAD, we consider objects as functions of outwardness. The boundary is 0, negative is the interior and positive the exterior. The magnitude is how far out or in.

type Obj2 = ℝ2 -> Source

A 2D object

type Obj3 = ℝ3 -> Source

A 3D object