Version: 9.16.0
AdvancedEngine_ISmoothingSurface.hxx
Go to the documentation of this file.
1// Copyright (C) 2007-2026 CEA, EDF, OPEN CASCADE
2//
3// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5//
6// This library is free software; you can redistribute it and/or
7// modify it under the terms of the GNU Lesser General Public
8// License as published by the Free Software Foundation; either
9// version 2.1 of the License, or (at your option) any later version.
10//
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14// Lesser General Public License for more details.
15//
16// You should have received a copy of the GNU Lesser General Public
17// License along with this library; if not, write to the Free Software
18// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19//
20// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21//
22
23#ifndef _AdvancedEngine_ISmoothingSurface_HXX_
24#define _AdvancedEngine_ISmoothingSurface_HXX_
25
26#include "GEOM_Function.hxx"
27
28#define SMOOTHINGSURFACE_ARG_LENG 1
29#define SMOOTHINGSURFACE_ARG_LAST 2
30#define SMOOTHINGSURFACE_ARG_NB_MAX 3
31#define SMOOTHINGSURFACE_ARG_DEG_MAX 4
32#define SMOOTHINGSURFACE_ARG_D_MAX 5
33
35{
36public:
37 AdvancedEngine_ISmoothingSurface(Handle(GEOM_Function) theFunction): _func(theFunction) {}
38
39 void SetLength(int theLen) { _func->SetInteger(SMOOTHINGSURFACE_ARG_LENG, theLen); }
40 int GetLength() { return _func->GetInteger(SMOOTHINGSURFACE_ARG_LENG); }
41
42 void SetPntOrComp(int theId, Handle(GEOM_Function) theP) { _func->SetReference(SMOOTHINGSURFACE_ARG_LAST + theId, theP); }
43 Handle(GEOM_Function) GetPntOrComp(int theId) { return _func->GetReference(SMOOTHINGSURFACE_ARG_LAST + theId); }
44
45 void SetNbMax(int theNbMax) { _func->SetInteger(SMOOTHINGSURFACE_ARG_NB_MAX, theNbMax); }
46 int GetNbMax() { return _func->GetInteger(SMOOTHINGSURFACE_ARG_NB_MAX); }
47
48 void SetDegMax(int theDegMax) { _func->SetInteger(SMOOTHINGSURFACE_ARG_DEG_MAX, theDegMax); }
49 int GetDegMax() { return _func->GetInteger(SMOOTHINGSURFACE_ARG_DEG_MAX); }
50
51 void SetDMax(double theDMax) { _func->SetReal(SMOOTHINGSURFACE_ARG_D_MAX, theDMax); }
52 double GetDMax() { return _func->GetReal(SMOOTHINGSURFACE_ARG_D_MAX); }
53
54private:
55 Handle(GEOM_Function) _func;
56};
57
58#endif // _AdvancedEngine_ISmoothingSurface_HXX_
#define SMOOTHINGSURFACE_ARG_D_MAX
Definition: AdvancedEngine_ISmoothingSurface.hxx:32
#define SMOOTHINGSURFACE_ARG_NB_MAX
Definition: AdvancedEngine_ISmoothingSurface.hxx:30
#define SMOOTHINGSURFACE_ARG_DEG_MAX
Definition: AdvancedEngine_ISmoothingSurface.hxx:31
#define SMOOTHINGSURFACE_ARG_LAST
Definition: AdvancedEngine_ISmoothingSurface.hxx:29
#define SMOOTHINGSURFACE_ARG_LENG
Definition: AdvancedEngine_ISmoothingSurface.hxx:28
Definition: AdvancedEngine_ISmoothingSurface.hxx:35
void SetDegMax(int theDegMax)
Definition: AdvancedEngine_ISmoothingSurface.hxx:48
double GetDMax()
Definition: AdvancedEngine_ISmoothingSurface.hxx:52
Handle(GEOM_Function) GetPntOrComp(int theId)
Definition: AdvancedEngine_ISmoothingSurface.hxx:43
int GetNbMax()
Definition: AdvancedEngine_ISmoothingSurface.hxx:46
void SetNbMax(int theNbMax)
Definition: AdvancedEngine_ISmoothingSurface.hxx:45
int GetDegMax()
Definition: AdvancedEngine_ISmoothingSurface.hxx:49
int GetLength()
Definition: AdvancedEngine_ISmoothingSurface.hxx:40
void SetPntOrComp(int theId, Handle(GEOM_Function) theP)
Definition: AdvancedEngine_ISmoothingSurface.hxx:42
Handle(GEOM_Function) _func
void SetDMax(double theDMax)
Definition: AdvancedEngine_ISmoothingSurface.hxx:51
AdvancedEngine_ISmoothingSurface(Handle(GEOM_Function) theFunction)
Definition: AdvancedEngine_ISmoothingSurface.hxx:37
void SetLength(int theLen)
Definition: AdvancedEngine_ISmoothingSurface.hxx:39