mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0032269: Visualization - update trinfo command with -lods option
This commit is contained in:
parent
20085dac44
commit
cb766858b7
@ -734,19 +734,30 @@ static Standard_Integer trianglesinfo (Draw_Interpretor& theDI, Standard_Integer
|
|||||||
aDynTypeCounter = &aStats->TypeMap.ChangeFromIndex (aNewIndex);
|
aDynTypeCounter = &aStats->TypeMap.ChangeFromIndex (aNewIndex);
|
||||||
}
|
}
|
||||||
(*aDynTypeCounter)++;
|
(*aDynTypeCounter)++;
|
||||||
aStats->NbTriangles += aLOD->NbTriangles();
|
|
||||||
if (aLOD->HasDeferredData())
|
if (aLOD->HasDeferredData())
|
||||||
{
|
{
|
||||||
aStats->NbDeferredFaces++;
|
aStats->NbDeferredFaces++;
|
||||||
if (!aLOD->HasGeometry())
|
if (aLOD->HasGeometry())
|
||||||
|
{
|
||||||
|
aStats->NbTriangles += aLOD->NbTriangles();
|
||||||
|
}
|
||||||
|
else
|
||||||
{
|
{
|
||||||
aStats->NbUnloadedFaces++;
|
aStats->NbUnloadedFaces++;
|
||||||
|
aStats->NbTriangles += aLOD->NbDeferredTriangles();
|
||||||
aStats->NbUnloadedTriangles += aLOD->NbDeferredTriangles();
|
aStats->NbUnloadedTriangles += aLOD->NbDeferredTriangles();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (!aLOD->HasGeometry())
|
else
|
||||||
{
|
{
|
||||||
aStats->NbEmptyFaces++;
|
if (aLOD->HasGeometry())
|
||||||
|
{
|
||||||
|
aStats->NbTriangles += aLOD->NbTriangles();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
aStats->NbEmptyFaces++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user