From 30241e819e6f891fee00f62b31b15e93a1637293 Mon Sep 17 00:00:00 2001 From: eap Date: Mon, 2 Jul 2012 13:26:36 +0000 Subject: [PATCH] 0021381: EDF 1984 BLSURFPLUGIN: Sub-mesh with BLSURF struct SMESH_TNodeXYZ : public gp_XYZ { + double _xyz[3]; --- src/SMESHUtils/SMESH_TypeDefs.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/SMESHUtils/SMESH_TypeDefs.hxx b/src/SMESHUtils/SMESH_TypeDefs.hxx index 6b0cdcba8..edb0f247f 100644 --- a/src/SMESHUtils/SMESH_TypeDefs.hxx +++ b/src/SMESHUtils/SMESH_TypeDefs.hxx @@ -105,13 +105,13 @@ struct SMESH_OrientedLink: public SMESH_TLink struct SMESH_TNodeXYZ : public gp_XYZ { const SMDS_MeshNode* _node; + double _xyz[3]; SMESH_TNodeXYZ( const SMDS_MeshElement* e):gp_XYZ(0,0,0),_node(0) { if (e) { assert( e->GetType() == SMDSAbs_Node ); _node = static_cast(e); - double xyz[3]; - _node->GetXYZ(xyz); // - thread safe gatting coords - SetCoord( xyz[0], xyz[1], xyz[2] ); + _node->GetXYZ(_xyz); // - thread safe getting coords + SetCoord( _xyz[0], _xyz[1], _xyz[2] ); } } double Distance(const SMDS_MeshNode* n) const { return (SMESH_TNodeXYZ( n )-*this).Modulus(); } -- 2.39.2