Freestyle: minor speed-up by omitting the calculation of the smallest edge size.

BlenderFileLoader tries to find the smallest edge size but the computed value is not used.
This commit is contained in:
2015-08-09 23:36:53 +09:00
parent afe3b55483
commit 3e9f6fc281
4 changed files with 20 additions and 1 deletions

View File

@@ -209,7 +209,9 @@ private:
BBox<Vec3r> _Scene3dBBox;
unsigned int _SceneNumFaces;
#if 0
real _minEdgeSize;
#endif
real _EPSILON;
real _bboxDiag;