2010-05-14 21:15:28 +06:00
|
|
|
// Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
|
2005-12-05 21:23:52 +05:00
|
|
|
//
|
2009-02-13 17:16:39 +05:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2005-12-05 21:23:52 +05:00
|
|
|
//
|
2009-02-13 17:16:39 +05:00
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2.1 of the License.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
//
|
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2005-12-05 21:23:52 +05:00
|
|
|
//
|
2010-05-14 21:15:28 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
//NOTE: This is an intreface to a function for the point creation.
|
2009-02-13 17:16:39 +05:00
|
|
|
//
|
2004-12-01 15:39:14 +05:00
|
|
|
#include "GEOM_Function.hxx"
|
|
|
|
|
|
|
|
#define ARG_X 1
|
|
|
|
#define ARG_Y 2
|
|
|
|
#define ARG_Z 3
|
|
|
|
|
|
|
|
#define ARG_REF 4
|
|
|
|
|
|
|
|
#define ARG_PARAM 5
|
|
|
|
#define ARG_CURVE 6
|
2008-03-07 12:45:34 +05:00
|
|
|
#define ARG_LINE1 7
|
|
|
|
#define ARG_LINE2 8
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2009-02-13 17:16:39 +05:00
|
|
|
#define ARG_SURFACE 9
|
|
|
|
#define ARG_PARAM2 10
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
class GEOMImpl_IPoint
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
GEOMImpl_IPoint(Handle(GEOM_Function) theFunction): _func(theFunction) {}
|
|
|
|
|
|
|
|
void SetX(double theX) { _func->SetReal(ARG_X, theX); }
|
|
|
|
void SetY(double theY) { _func->SetReal(ARG_Y, theY); }
|
|
|
|
void SetZ(double theZ) { _func->SetReal(ARG_Z, theZ); }
|
|
|
|
|
|
|
|
double GetX() { return _func->GetReal(ARG_X); }
|
|
|
|
double GetY() { return _func->GetReal(ARG_Y); }
|
|
|
|
double GetZ() { return _func->GetReal(ARG_Z); }
|
|
|
|
|
|
|
|
void SetRef(Handle(GEOM_Function) theRefPoint) { _func->SetReference(ARG_REF, theRefPoint); }
|
|
|
|
|
|
|
|
Handle(GEOM_Function) GetRef() { return _func->GetReference(ARG_REF); }
|
|
|
|
|
|
|
|
void SetCurve(Handle(GEOM_Function) theRef) { _func->SetReference(ARG_CURVE, theRef); }
|
2009-02-13 17:16:39 +05:00
|
|
|
void SetSurface(Handle(GEOM_Function) theRef) { _func->SetReference(ARG_SURFACE, theRef); }
|
2008-03-07 12:45:34 +05:00
|
|
|
void SetLine1(Handle(GEOM_Function) theRef) { _func->SetReference(ARG_LINE1, theRef); }
|
|
|
|
void SetLine2(Handle(GEOM_Function) theRef) { _func->SetReference(ARG_LINE2, theRef); }
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
Handle(GEOM_Function) GetCurve() { return _func->GetReference(ARG_CURVE); }
|
2009-02-13 17:16:39 +05:00
|
|
|
Handle(GEOM_Function) GetSurface() { return _func->GetReference(ARG_SURFACE); }
|
2008-03-07 12:45:34 +05:00
|
|
|
Handle(GEOM_Function) GetLine1() { return _func->GetReference(ARG_LINE1); }
|
|
|
|
Handle(GEOM_Function) GetLine2() { return _func->GetReference(ARG_LINE2); }
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
void SetParameter(double theParam) { _func->SetReal(ARG_PARAM, theParam); }
|
2009-02-13 17:16:39 +05:00
|
|
|
void SetParameter2(double theParam) { _func->SetReal(ARG_PARAM2, theParam); }
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
double GetParameter() { return _func->GetReal(ARG_PARAM); }
|
2009-02-13 17:16:39 +05:00
|
|
|
double GetParameter2() { return _func->GetReal(ARG_PARAM2); }
|
2004-12-01 15:39:14 +05:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Handle(GEOM_Function) _func;
|
|
|
|
};
|