File tree Expand file tree Collapse file tree 2 files changed +1
-2
lines changed
Expand file tree Collapse file tree 2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -3951,7 +3951,6 @@ void CJGeoCreator::getOuterRaySurfaces(
39513951 }
39523952 if (!faceIsExterior) { continue ; }
39533953
3954- // store the plane representing the surface
39553954 std::unique_lock<std::mutex> listLock (listmutex);
39563955 outerSurfacePairList.emplace_back (std::make_pair (currentFace, lookup->getProductPtr ()));
39573956 listLock.unlock ();
Original file line number Diff line number Diff line change @@ -299,7 +299,7 @@ std::vector<gp_Pnt> helperFunctions::getPointGridOnWire(const TopoDS_Face& thefa
299299 }
300300
301301 BRepOffsetAPI_MakeOffset offsetter (BRepTools::OuterWire (theface), GeomAbs_Intersection);
302- offsetter.Perform (-settingsCollection. precisionCoarse () );
302+ offsetter.Perform (-1e-3 );
303303
304304 if (!offsetter.IsDone ()) { return {}; }
305305 const TopoDS_Shape offsettedFace = offsetter.Shape ();
You can’t perform that action at this time.
0 commit comments