1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0023966: Voxel_FastConverter performs unnecessary triangulation.

Avoiding creating new triangulation in case a triangulation with a deflection value not greater than the one specified exists.
This commit is contained in:
Pawel 2013-05-15 17:53:23 +02:00
parent 8fd76287f8
commit eb57b012e8

View File

@ -123,7 +123,7 @@ void Voxel_FastConverter::Init()
{
TopoDS_Face F = TopoDS::Face(expl.Current());
Handle(Poly_Triangulation) T = BRep_Tool::Triangulation(F, L);
if (T.IsNull() || fabs(T->Deflection() - myDeflection) > Precision::Confusion())
if (T.IsNull() || (T->Deflection() > myDeflection))
{
triangulate = Standard_True;
break;