mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-12-28 18:30:35 +05:00
+ void SetParameters(double aUparam, double aVparam);
This commit is contained in:
parent
686e5fb3ee
commit
82b050103f
@ -84,3 +84,14 @@ double SMDS_FacePosition::GetVParameter() const
|
|||||||
{
|
{
|
||||||
return myVParameter;
|
return myVParameter;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : SetParameters
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
|
||||||
|
void SMDS_FacePosition::SetParameters(double aUparam, double aVparam)
|
||||||
|
{
|
||||||
|
myUParameter = aUparam;
|
||||||
|
myVParameter = aVparam;
|
||||||
|
}
|
||||||
|
@ -39,6 +39,7 @@ class SMDS_EXPORT SMDS_FacePosition:public SMDS_Position
|
|||||||
SMDS_TypeOfPosition GetTypeOfPosition() const;
|
SMDS_TypeOfPosition GetTypeOfPosition() const;
|
||||||
void SetUParameter(double aUparam);
|
void SetUParameter(double aUparam);
|
||||||
void SetVParameter(double aVparam);
|
void SetVParameter(double aVparam);
|
||||||
|
void SetParameters(double aUparam, double aVparam);
|
||||||
double GetUParameter() const;
|
double GetUParameter() const;
|
||||||
double GetVParameter() const;
|
double GetVParameter() const;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user