#include /** Generic implementation of fillets. */ namespace Fillet { PREDBGVAR(dbg); /** A generic shape: polylines. */ class Shape { vector points; // Vector of indices after which there is no edge public: Shape transform(CoordSys *t, float dicefudge = 1); } }