Salome HOME
updated copyright message
[modules/gui.git] / src / VTKViewer / VTKViewer_DataSetMapper.h
index 76ae91f7bc8e1fb1de61b5e06049841d40feb50d..416789670d5d9311554af3efd8fc894ce8fabcce 100644 (file)
@@ -1,9 +1,9 @@
-// Copyright (C) 2007-2012  CEA/DEN, EDF R&D, OPEN CASCADE
+// Copyright (C) 2007-2023  CEA, EDF, OPEN CASCADE
 //
 // 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.
+// version 2.1 of the License, or (at your option) any later version.
 //
 // This library is distributed in the hope that it will be useful,
 // but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -29,11 +29,17 @@ class VTKVIEWER_EXPORT VTKViewer_DataSetMapper : public vtkDataSetMapper
 {
 public:
   static VTKViewer_DataSetMapper *New();
-  vtkTypeMacro(VTKViewer_DataSetMapper,vtkDataSetMapper);
+  vtkTypeMacro(VTKViewer_DataSetMapper,vtkDataSetMapper)
 
   //! Set point marker enabled
   void SetMarkerEnabled( bool );
-
+  
+  //! Set ball element enabled
+  void SetBallEnabled( bool );
+  
+  //! Set ball element scale factor
+  void SetBallScale( double );
+  
   //! Set standard point marker
   void SetMarkerStd( VTK::MarkerType, VTK::MarkerScale );
 
@@ -62,6 +68,8 @@ private:
 
 private:
   bool               MarkerEnabled;
+  bool               BallEnabled;
+  double           BallScale;
   VTK::MarkerType    MarkerType;
   VTK::MarkerScale   MarkerScale;
   int                MarkerId;