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