From 0bd575a716bfdd0df49425f27880a57725d9e97b Mon Sep 17 00:00:00 2001 From: msv Date: Thu, 6 Apr 2017 15:28:26 +0300 Subject: [PATCH] 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. --- src/gp/gp_Ax2.lxx | 7 ++++--- src/gp/gp_Ax22d.lxx | 5 ++++- src/gp/gp_Ax2d.lxx | 5 ++++- src/gp/gp_Ax3.lxx | 7 ++++--- 4 files changed, 16 insertions(+), 8 deletions(-) diff --git a/src/gp/gp_Ax2.lxx b/src/gp/gp_Ax2.lxx index d48f3e407e..3e94b37be6 100644 --- a/src/gp/gp_Ax2.lxx +++ b/src/gp/gp_Ax2.lxx @@ -12,11 +12,12 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. -#include -#include #include -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, diff --git a/src/gp/gp_Ax22d.lxx b/src/gp/gp_Ax22d.lxx index 286668ab8a..40d1597465 100644 --- a/src/gp/gp_Ax22d.lxx +++ b/src/gp/gp_Ax22d.lxx @@ -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 , diff --git a/src/gp/gp_Ax2d.lxx b/src/gp/gp_Ax2d.lxx index 098d6cd56b..37048626a2 100644 --- a/src/gp/gp_Ax2d.lxx +++ b/src/gp/gp_Ax2d.lxx @@ -17,7 +17,10 @@ #include -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, diff --git a/src/gp/gp_Ax3.lxx b/src/gp/gp_Ax3.lxx index 71d4044f37..2b4fe6d91a 100644 --- a/src/gp/gp_Ax3.lxx +++ b/src/gp/gp_Ax3.lxx @@ -12,11 +12,12 @@ // Alternatively, this file may be used under the terms of Open CASCADE // commercial license or contractual agreement. -#include #include -#include -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) :