]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
To introduce corresponding type of Actor for Gauss Points presentation
authorapo <apo@opencascade.com>
Tue, 30 Aug 2005 12:53:57 +0000 (12:53 +0000)
committerapo <apo@opencascade.com>
Tue, 30 Aug 2005 12:53:57 +0000 (12:53 +0000)
src/OBJECT/Makefile.in
src/OBJECT/VISU_GaussPtsAct.cxx [new file with mode: 0644]
src/OBJECT/VISU_GaussPtsAct.h [new file with mode: 0644]

index 58ee6a62beaa5aca92d961c646652075fe7f5733..dceb3573d689f293bc3cc1637b51d8615bf4def8 100644 (file)
@@ -32,12 +32,22 @@ VPATH=.:@srcdir@:@top_srcdir@/idl
 
 @COMMENCE@
 
-EXPORT_HEADERS = VISU_Actor.h VISU_MeshAct.h VISU_ScalarMapAct.h VISU_VectorsAct.h
+EXPORT_HEADERS = \
+       VISU_Actor.h \
+       VISU_MeshAct.h \
+       VISU_ScalarMapAct.h \
+       VISU_GaussPtsAct.h \
+       VISU_VectorsAct.h
 
 # Libraries targets
 
 LIB = libVisuObject.la
-LIB_SRC = VISU_Actor.cxx VISU_MeshAct.cxx VISU_ScalarMapAct.cxx VISU_VectorsAct.cxx
+LIB_SRC = \
+       VISU_Actor.cxx \
+       VISU_MeshAct.cxx \
+       VISU_ScalarMapAct.cxx \
+       VISU_GaussPtsAct.cxx \
+       VISU_VectorsAct.cxx
 
 LIB_CLIENT_IDL = 
 
diff --git a/src/OBJECT/VISU_GaussPtsAct.cxx b/src/OBJECT/VISU_GaussPtsAct.cxx
new file mode 100644 (file)
index 0000000..8de55fe
--- /dev/null
@@ -0,0 +1,65 @@
+//  VISU OBJECT : interactive object for VISU entities implementation
+//
+//  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+//
+//
+//
+//  File   : VISU_MeshAct.hxx
+//  Author : Laurent CORNABE with the help of Nicolas REJNERI
+//  Module : VISU
+//  $Header$
+
+#include "VISU_GaussPtsAct.h"
+#include "VISU_GaussPointsPL.hxx"
+
+#include <vtkObjectFactory.h>
+
+vtkStandardNewMacro(VISU_GaussPtsAct);
+
+VISU_GaussPtsAct
+::VISU_GaussPtsAct():
+  myGaussPointsPL(NULL)
+{}
+
+VISU_GaussPtsAct
+::~VISU_GaussPtsAct()
+{}
+
+void
+VISU_GaussPtsAct
+::AddToRender(vtkRenderer* theRenderer)
+{
+  Superclass::AddToRender(theRenderer);
+}
+
+void 
+VISU_GaussPtsAct
+::RemoveFromRender(vtkRenderer* theRenderer)
+{
+  Superclass::RemoveFromRender(theRenderer);
+}
+
+void
+VISU_GaussPtsAct
+::SetPipeLine(VISU_PipeLine* thePipeLine) 
+{
+  myGaussPointsPL = dynamic_cast<VISU_GaussPointsPL*>(thePipeLine);
+  Superclass::SetPipeLine(thePipeLine);
+}
diff --git a/src/OBJECT/VISU_GaussPtsAct.h b/src/OBJECT/VISU_GaussPtsAct.h
new file mode 100644 (file)
index 0000000..625eb47
--- /dev/null
@@ -0,0 +1,54 @@
+//  VISU OBJECT : interactive object for VISU entities implementation
+//
+//  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+//
+//
+//
+//  File   : VISU_ScalarMapAct.h
+//  Author : Laurent CORNABE with help of Nicolas REJNERI
+//  Module : VISU
+//  $Header$
+
+#ifndef VISU_GaussPtsAct_HeaderFile
+#define VISU_GaussPtsAct_HeaderFile
+
+#include "VISU_ScalarMapAct.h"
+
+class VISU_GaussPointsPL;
+
+class VTKOCC_EXPORT VISU_GaussPtsAct : public VISU_ScalarMapAct
+{
+ public:
+  vtkTypeMacro(VISU_GaussPtsAct,VISU_ScalarMapAct);
+  static VISU_GaussPtsAct* New();
+
+  virtual void SetPipeLine(VISU_PipeLine* thePipeLine) ;
+
+  virtual void AddToRender(vtkRenderer* theRenderer); 
+  virtual void RemoveFromRender(vtkRenderer* theRenderer);
+
+ protected:
+  VISU_GaussPtsAct();
+  virtual ~VISU_GaussPtsAct();
+
+  VISU_GaussPointsPL* myGaussPointsPL;
+};
+
+#endif