mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 10:08:34 +05:00
0020855: [CEA] Problem with ijk algo
* Fix uninitialized gravity center - gp_XYZ gc; + gp_XYZ gc(0,0,0);
This commit is contained in:
parent
8ebb31bcc9
commit
46390b4393
@ -1,7 +1,4 @@
|
||||
// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
|
||||
//
|
||||
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
||||
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
||||
// Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or
|
||||
// modify it under the terms of the GNU Lesser General Public
|
||||
@ -19,11 +16,11 @@
|
||||
//
|
||||
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
||||
//
|
||||
|
||||
// File : StdMeshers_HexaFromSkin_3D.cxx
|
||||
// Created : Wed Jan 27 12:28:07 2010
|
||||
// Author : Edward AGAPOV (eap)
|
||||
|
||||
|
||||
//
|
||||
#include "StdMeshers_HexaFromSkin_3D.hxx"
|
||||
|
||||
#include "SMDS_VolumeOfNodes.hxx"
|
||||
@ -630,7 +627,7 @@ namespace
|
||||
// Select one of found sides most close to startBlockSide
|
||||
|
||||
// gravity center of already loaded block sides
|
||||
gp_XYZ gc;
|
||||
gp_XYZ gc(0,0,0);
|
||||
for (int i = 0; i < B_UNDEFINED; ++i )
|
||||
if ( block._side[ i ] )
|
||||
gc += block._side[ i ]._side->getGC();
|
||||
|
Loading…
Reference in New Issue
Block a user