Public Member Functions | |
| SMESH_MeshEditor_PathPoint () | |
| void | SetPnt (const gp_Pnt &aP3D) |
| void | SetTangent (const gp_Dir &aTgt) |
| void | SetAngle (const double &aBeta) |
| void | SetParameter (const double &aPrm) |
| const gp_Pnt & | Pnt () const |
| const gp_Dir & | Tangent () const |
| double | Angle () const |
| double | Parameter () const |
Data Fields | |
| gp_Pnt | myPnt |
| gp_Dir | myTgt |
| double | myAngle |
| double | myPrm |
Definition at line 658 of file SMESH_MeshEditor.hxx.
| SMESH_MeshEditor.SMESH_MeshEditor_PathPoint.SMESH_MeshEditor_PathPoint | ( | ) |
| double SMESH_MeshEditor.SMESH_MeshEditor_PathPoint.Angle | ( | ) | const |
Definition at line 671 of file SMESH_MeshEditor.hxx.
Referenced by SMESH_MeshEditor.MakeExtrElements().
{ return myAngle; }
| double SMESH_MeshEditor.SMESH_MeshEditor_PathPoint.Parameter | ( | ) | const |
Definition at line 672 of file SMESH_MeshEditor.hxx.
{ return myPrm; }
| const gp_Pnt& SMESH_MeshEditor.SMESH_MeshEditor_PathPoint.Pnt | ( | ) | const |
Definition at line 669 of file SMESH_MeshEditor.hxx.
Referenced by SMESH_MeshEditor.MakeExtrElements().
{ return myPnt; }
| void SMESH_MeshEditor.SMESH_MeshEditor_PathPoint.SetAngle | ( | const double & | aBeta | ) |
Definition at line 667 of file SMESH_MeshEditor.hxx.
Referenced by SMESH_MeshEditor.MakeExtrElements().
{ myAngle=aBeta; }
| void SMESH_MeshEditor.SMESH_MeshEditor_PathPoint.SetParameter | ( | const double & | aPrm | ) |
Definition at line 668 of file SMESH_MeshEditor.hxx.
Referenced by SMESH_MeshEditor.MakeEdgePathPoints().
{ myPrm =aPrm; }
| void SMESH_MeshEditor.SMESH_MeshEditor_PathPoint.SetPnt | ( | const gp_Pnt & | aP3D | ) |
Definition at line 665 of file SMESH_MeshEditor.hxx.
Referenced by SMESH_MeshEditor.MakeEdgePathPoints().
{ myPnt =aP3D; }
| void SMESH_MeshEditor.SMESH_MeshEditor_PathPoint.SetTangent | ( | const gp_Dir & | aTgt | ) |
Definition at line 666 of file SMESH_MeshEditor.hxx.
Referenced by SMESH_MeshEditor.MakeEdgePathPoints().
{ myTgt =aTgt; }
| const gp_Dir& SMESH_MeshEditor.SMESH_MeshEditor_PathPoint.Tangent | ( | ) | const |
Definition at line 670 of file SMESH_MeshEditor.hxx.
Referenced by SMESH_MeshEditor.MakeExtrElements().
{ return myTgt; }
Definition at line 662 of file SMESH_MeshEditor.hxx.
Definition at line 660 of file SMESH_MeshEditor.hxx.
Definition at line 662 of file SMESH_MeshEditor.hxx.
Definition at line 661 of file SMESH_MeshEditor.hxx.