diff --git a/src/StdPrs/StdPrs_ShadedShape.cxx b/src/StdPrs/StdPrs_ShadedShape.cxx index 92d6aa366f..1a5d42b3e8 100644 --- a/src/StdPrs/StdPrs_ShadedShape.cxx +++ b/src/StdPrs/StdPrs_ShadedShape.cxx @@ -19,6 +19,7 @@ #include #include #include +#include #include #include #include @@ -206,6 +207,14 @@ namespace aNbVertices += aT->NbNodes(); // estimate number of degenerated nodes to be duplicated + TopLoc_Location aLocSurf; + const Handle(Geom_Surface)& aSurf = BRep_Tool::Surface (aFace, aLocSurf); + if (Handle(Geom_SphericalSurface) aGeomSphere = Handle(Geom_SphericalSurface)::DownCast(aSurf)) + { + // do not change normals in sphere + continue; + } + for (TopExp_Explorer anEdgeIt (aFace, TopAbs_EDGE); anEdgeIt.More(); anEdgeIt.Next()) { const TopoDS_Edge& anEdge = TopoDS::Edge(anEdgeIt.Current());