clone method

CSG clone()

Implementation

CSG clone() {
  final csg = CSG();
  csg.polygons = polygons.where((p) => p.plane.w.isFinite).toList();//.sublist(0);
  return csg;
}