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

0028636: Optimisation of gp_* classes in order to avoid unnecesary calling gp_Dir* constructors with normalisation

The improvement is concluded in replacement of calls to gp_Dir2d(1,0) with calls to gp_Dir2d(void).
Thus we avoid sqrt() that is called from within gp_Dir2d(double,double). The same is with direction in 3D space.
This commit is contained in:
msv 2017-04-06 15:28:26 +03:00 committed by bugmaster
parent aeee70d353
commit 0bd575a716
4 changed files with 16 additions and 8 deletions

View File

@ -12,11 +12,12 @@
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <gp.hxx>
#include <gp_Ax1.hxx>
#include <Precision.hxx>
inline gp_Ax2::gp_Ax2() : vydir(0.,1.,0.), vxdir(1.,0.,0.)
inline gp_Ax2::gp_Ax2()
:
vydir(0.,1.,0.)
// vxdir(1.,0.,0.) use default ctor of gp_Dir, as it creates the same dir(1,0,0)
{ }
inline gp_Ax2::gp_Ax2(const gp_Pnt& P,

View File

@ -12,7 +12,10 @@
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
inline gp_Ax22d::gp_Ax22d() : vydir(0.,1.), vxdir(1.,0.)
inline gp_Ax22d::gp_Ax22d()
:
vydir(0.,1.)
// vxdir(1.,0.) use default ctor of gp_Dir2d, as it creates the same dir(1, 0)
{}
inline gp_Ax22d::gp_Ax22d(const gp_Pnt2d& P ,

View File

@ -17,7 +17,10 @@
#include <gp_Ax2d.hxx>
inline gp_Ax2d::gp_Ax2d() : loc(0.,0.), vdir(1.,0.)
inline gp_Ax2d::gp_Ax2d()
:
loc(0.,0.)
//vdir(1.,0.) use default ctor of gp_Dir2d, as it creates the same dir (1,0)
{ }
inline gp_Ax2d::gp_Ax2d (const gp_Pnt2d& P,

View File

@ -12,11 +12,12 @@
// Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement.
#include <gp.hxx>
#include <gp_Ax2.hxx>
#include <gp_Ax1.hxx>
inline gp_Ax3::gp_Ax3() : vydir(0.,1.,0.), vxdir(1.,0.,0.)
inline gp_Ax3::gp_Ax3()
:
vydir(0.,1.,0.)
// vxdir(1.,0.,0.) use default ctor of gp_Dir, as it creates the same dir(1,0,0)
{ }
inline gp_Ax3::gp_Ax3(const gp_Ax2& A) :