AngelCAD
1.5-00
|
3d Minkowski sum operation More...
#include <angelcad.h>
Public Member Functions | |
minkowski3d (const solid@ a, const solid@ b) | |
Compute minkowski sum between a and b. More... | |
Public Member Functions inherited from solid | |
solid@ | opAdd (solid@ b) |
Boolean union operator+ overload. More... | |
solid@ | opAnd (solid@ b) |
Boolean intersection operator& overload. More... | |
solid@ | opMul (tmatrix@ matrix) |
Transform object by matrix multiplication: solid@ o2 = T * o1. More... | |
solid@ | opSub (solid@ b) |
Boolean difference operator- overload. More... | |
Public Member Functions inherited from shape | |
boundingbox@ | box () const |
Return bounding box of object. More... | |
tmatrix@ | transform () const |
Return transformation matrix of object. More... | |
void | write_csg (string path) |
Write object to OpenSCAD .csg file. More... | |
void | write_xcsg (string path, double secant_tolerance=- 1.0) |
Write object to .xcsg file for processing by xcsg program. More... | |
3d Minkowski sum operation
minkowski3d is a 3-dimensional boolean operation requiring exactly
2 parameters, a and b. The first parameter (a) is generally the larger
and can be concave or convex. The second parameter (b) is assumed smaller
and convex (such as a sphere). Typical use of the minkowski sum is to
create an object with rounded edges.
Compute minkowski sum between a and b.
a | solid@ |
b | solid@ |