mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0027595: Mesh - faces without triangulations due to gp_VectorWithNullMagnitude exception
Zero magnitude check has been added before gp::Vec::Angle() usage
This commit is contained in:
parent
576e306647
commit
782467fd42
@ -969,7 +969,9 @@ void BRepMesh_FastDiscretFace::insertInternalVerticesOther(
|
|||||||
if (aDist < aDefFace)
|
if (aDist < aDefFace)
|
||||||
{
|
{
|
||||||
// Lets check parameters for angular deflection.
|
// Lets check parameters for angular deflection.
|
||||||
if (aPrevVec2.Angle (aTmpVec) < myAngle)
|
if (aPrevVec2.SquareMagnitude() < gp::Resolution() ||
|
||||||
|
aTmpVec.SquareMagnitude() < gp::Resolution() ||
|
||||||
|
aPrevVec2.Angle (aTmpVec) < myAngle)
|
||||||
{
|
{
|
||||||
// For current Iso line we can remove this parameter.
|
// For current Iso line we can remove this parameter.
|
||||||
aToRemove2.Add (aParam2);
|
aToRemove2.Add (aParam2);
|
||||||
|
@ -22,7 +22,7 @@ tclean result
|
|||||||
set Deflection 0.001
|
set Deflection 0.001
|
||||||
incmesh result ${Deflection}
|
incmesh result ${Deflection}
|
||||||
|
|
||||||
checktrinfo result -tri 411758 -nod 209610 -defl 0.0092442421472207319 -tol_rel_defl 0.001 -tol_rel_tri 0.001 -tol_rel_nod 0.001
|
checktrinfo result -tri 311280 -nod 159373 -defl 0.0092442421472206764 -tol_rel_defl 0.001 -tol_rel_tri 0.001 -tol_rel_nod 0.001
|
||||||
|
|
||||||
vinit
|
vinit
|
||||||
vdisplay result
|
vdisplay result
|
||||||
|
Loading…
x
Reference in New Issue
Block a user