mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-25 05:52:04 +05:00
25 lines
709 B
Plaintext
25 lines
709 B
Plaintext
![]() |
// File: SMDS_EdgePosition.lxx
|
||
|
// Created: Mon May 13 14:47:40 2002
|
||
|
// Author: Jean-Michel BOULCOURT
|
||
|
// <jmb@localhost.localdomain>
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : SetUParameter
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
inline void SMDS_EdgePosition::SetUParameter(const Standard_Real aUparam)
|
||
|
{
|
||
|
myUParameter = aUparam;
|
||
|
}
|
||
|
|
||
|
//=======================================================================
|
||
|
//function : GetUParameter
|
||
|
//purpose :
|
||
|
//=======================================================================
|
||
|
|
||
|
inline Standard_Real SMDS_EdgePosition::GetUParameter() const
|
||
|
{
|
||
|
return myUParameter;
|
||
|
}
|