X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FOBJECT%2FGEOM_WireframeFace.h;h=2958694dfcf0d8a55d3d9f5273e38556bd344f04;hb=4df412f5db44d67db5ad624250c204b44b1ba217;hp=cdbe122b3a895f50da2d1840a43ecfaf2179675c;hpb=04f3d723da1ae9133d108921c8f10338a9656d12;p=modules%2Fgeom.git diff --git a/src/OBJECT/GEOM_WireframeFace.h b/src/OBJECT/GEOM_WireframeFace.h index cdbe122b3..2958694df 100755 --- a/src/OBJECT/GEOM_WireframeFace.h +++ b/src/OBJECT/GEOM_WireframeFace.h @@ -1,3 +1,24 @@ +// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// +// 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 +// #ifndef GEOM_WIREFRAME_FACE_H #define GEOM_WIREFRAME_FACE_H @@ -15,8 +36,8 @@ public: vtkTypeMacro(GEOM_WireframeFace,GEOM_FaceSource); static GEOM_WireframeFace* New(); - vtkSetMacro(NbIso,int); - vtkGetMacro(NbIso,int); + /* vtkSetMacro(NbIso,int); + vtkGetMacro(NbIso,int);*/ vtkSetMacro(Discret,int); vtkGetMacro(Discret,int); @@ -25,16 +46,22 @@ public: void OCC2VTK(const TopoDS_Face& theFace, vtkPolyData* thePolyData, vtkPoints* thePts, - int theNbIso = 1, - int theDiscret = 15); - + const int theNbIso[2], + const int theDiscret = 15); + + //! IsoLines management + // theNb[0] - number of U lines + // theNb[1] - number of V lines + virtual void SetNbIso(const int theNb[2]); + virtual void GetNbIso(int &theNbU,int &theNbV); + protected: - int NbIso, Discret; + int NbIso[2], Discret; static void CreateIso(const TopoDS_Face& theFace, - const int theNbIso, + const int theNbIso[2], const int theDiscret, vtkPolyData* thePolyData, vtkPoints* thePts);