diff --git a/dox/upgrade/upgrade.md b/dox/upgrade/upgrade.md index 72720303c3..329bbacb9f 100644 --- a/dox/upgrade/upgrade.md +++ b/dox/upgrade/upgrade.md @@ -2333,3 +2333,8 @@ Applications extending OCCT 3D Viewer and calling OpenGL functions directly (lik This header, as well as `OpenGl_GlCore20.hxx` and similar, no more include system OpenGL / OpenGL ES headers to define function table. Application code calling OpenGL functions directly should be changed to either use `OpenGl_Context::core11fwd` (as designed) or to include system OpenGL headers in advance (with help of `OpenGl_GlNative.hxx`). + +@subsection upgrade_occt770_tooltriangulatedshape StdPrs_ToolTriangulatedShape + +Method `StdPrs_ToolTriangulatedShape::Normal()` has been removed. +Please use `BRepLib_ToolTriangulatedShape::ComputeNormals()` to fill in normal attributes in triangulation and fetch them directly using `Poly_Triangulation::Normal()`. diff --git a/src/StdPrs/StdPrs_ToolTriangulatedShape.cxx b/src/StdPrs/StdPrs_ToolTriangulatedShape.cxx index 4dcc091637..109417b4cf 100644 --- a/src/StdPrs/StdPrs_ToolTriangulatedShape.cxx +++ b/src/StdPrs/StdPrs_ToolTriangulatedShape.cxx @@ -119,36 +119,6 @@ Standard_Boolean StdPrs_ToolTriangulatedShape::IsClosed (const TopoDS_Shape& the } } -//======================================================================= -//function : Normal -//purpose : -//======================================================================= -void StdPrs_ToolTriangulatedShape::Normal (const TopoDS_Face& theFace, - Poly_Connect& thePolyConnect, - TColgp_Array1OfDir& theNormals) -{ - const Handle(Poly_Triangulation)& aPolyTri = thePolyConnect.Triangulation(); - if (!aPolyTri->HasNormals()) - { - ComputeNormals (theFace, aPolyTri, thePolyConnect); - } - - gp_Vec3f aNormal; - for (Standard_Integer aNodeIter = 1; aNodeIter <= aPolyTri->NbNodes(); ++aNodeIter) - { - aPolyTri->Normal (aNodeIter, aNormal); - theNormals.ChangeValue (aNodeIter).SetCoord (aNormal.x(), aNormal.y(), aNormal.z()); - } - - if (theFace.Orientation() == TopAbs_REVERSED) - { - for (Standard_Integer aNodeIter = 1; aNodeIter <= aPolyTri->NbNodes(); ++aNodeIter) - { - theNormals.ChangeValue (aNodeIter).Reverse(); - } - } -} - //======================================================================= //function : GetDeflection //purpose : diff --git a/src/StdPrs/StdPrs_ToolTriangulatedShape.hxx b/src/StdPrs/StdPrs_ToolTriangulatedShape.hxx index 7e59fd3cd5..1f75067ca1 100644 --- a/src/StdPrs/StdPrs_ToolTriangulatedShape.hxx +++ b/src/StdPrs/StdPrs_ToolTriangulatedShape.hxx @@ -32,14 +32,6 @@ public: //! @return true if shape is closed manifold Solid or compound of such Solids.
Standard_EXPORT static Standard_Boolean IsClosed (const TopoDS_Shape& theShape); - //! Evaluate normals for a triangle of a face. - //! @param[in] theFace the face. - //! @param[in] thePolyConnect the definition of a face triangulation. - //! @param[out] theNormals the array of normals for each triangle. - Standard_EXPORT static void Normal (const TopoDS_Face& theFace, - Poly_Connect& thePolyConnect, - TColgp_Array1OfDir& theNormals); - //! Computes the absolute deflection value depending on the type of deflection in theDrawer: //!