mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-15 10:08:34 +05:00
use linked nodes to get an upward direction when defining orientation
This commit is contained in:
parent
ea6aa32f23
commit
b5eb9a6a03
@ -518,8 +518,10 @@ bool SMDS_VolumeTool::Set (const SMDS_MeshElement* theVolume)
|
||||
// define volume orientation
|
||||
XYZ botNormal;
|
||||
GetFaceNormal( 0, botNormal.x, botNormal.y, botNormal.z );
|
||||
const SMDS_MeshNode* topNode = myVolumeNodes[ myVolumeNbNodes - 1 ];
|
||||
const SMDS_MeshNode* botNode = myVolumeNodes[ 0 ];
|
||||
int topNodeIndex = myVolume->NbCornerNodes() - 1;
|
||||
while ( !IsLinked( 0, topNodeIndex )) --topNodeIndex;
|
||||
const SMDS_MeshNode* topNode = myVolumeNodes[ topNodeIndex ];
|
||||
XYZ upDir (topNode->X() - botNode->X(),
|
||||
topNode->Y() - botNode->Y(),
|
||||
topNode->Z() - botNode->Z() );
|
||||
|
Loading…
Reference in New Issue
Block a user