mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-02-22 19:25:37 +05:00
Fix UV of nodes on the FACE
This commit is contained in:
parent
0353127167
commit
139a1a65e3
@ -20,8 +20,6 @@
|
|||||||
// SMESH SMESH : implementaion of SMESH idl descriptions
|
// SMESH SMESH : implementaion of SMESH idl descriptions
|
||||||
// File : StdMeshers_RadialQuadrangle_1D2D.cxx
|
// File : StdMeshers_RadialQuadrangle_1D2D.cxx
|
||||||
// Module : SMESH
|
// Module : SMESH
|
||||||
// Created : Fri Oct 20 11:37:07 2006
|
|
||||||
// Author : Edward AGAPOV (eap)
|
|
||||||
|
|
||||||
#include "StdMeshers_RadialQuadrangle_1D2D.hxx"
|
#include "StdMeshers_RadialQuadrangle_1D2D.hxx"
|
||||||
|
|
||||||
@ -878,6 +876,7 @@ bool StdMeshers_RadialQuadrangle_1D2D::Compute(SMESH_Mesh& aMesh,
|
|||||||
|
|
||||||
// orientation
|
// orientation
|
||||||
bool IsForward = ( CircEdge.Orientation()==TopAbs_FORWARD );
|
bool IsForward = ( CircEdge.Orientation()==TopAbs_FORWARD );
|
||||||
|
const double angleSign = ( F.Orientation() == TopAbs_REVERSED ? -1.0 : 1.0 );
|
||||||
|
|
||||||
// create nodes and mesh elements on face
|
// create nodes and mesh elements on face
|
||||||
// find axis of rotation
|
// find axis of rotation
|
||||||
@ -896,7 +895,7 @@ bool StdMeshers_RadialQuadrangle_1D2D::Compute(SMESH_Mesh& aMesh,
|
|||||||
gp_Ax1 theAxis(P0,gp_Dir(Axis));
|
gp_Ax1 theAxis(P0,gp_Dir(Axis));
|
||||||
aTrsf.SetRotation( theAxis, Angles.Value(i) );
|
aTrsf.SetRotation( theAxis, Angles.Value(i) );
|
||||||
gp_Trsf2d aTrsf2d;
|
gp_Trsf2d aTrsf2d;
|
||||||
aTrsf2d.SetRotation( PC, Angles.Value(i) );
|
aTrsf2d.SetRotation( PC, Angles.Value(i) * angleSign );
|
||||||
// create nodes
|
// create nodes
|
||||||
int j = 1;
|
int j = 1;
|
||||||
for(; j<=Points.Length(); j++) {
|
for(; j<=Points.Length(); j++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user