]> SALOME platform Git repositories - modules/visu.git/blob - src/PIPELINE/VISU_PointSpriteMapperHolder.cxx
Salome HOME
Merge from V6_main 01/04/2013
[modules/visu.git] / src / PIPELINE / VISU_PointSpriteMapperHolder.cxx
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, 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.
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 //  VISU OBJECT : interactive object for VISU entities implementation
24 // File:    VISU_PointSpriteMapperHolder.cxx
25 // Author:  Alexey PETROV
26 // Module : VISU
27 //
28 #include "VISU_PointSpriteMapperHolder.hxx"
29 #include "VISU_OpenGLPointSpriteMapper.hxx"
30
31 #include "VISU_PipeLineUtils.hxx"
32 #include "SALOME_ExtractPolyDataGeometry.h"
33
34 #ifdef _DEBUG_
35 static int MYDEBUG = 0;
36 #else
37 static int MYDEBUG = 0;
38 #endif
39
40
41 //----------------------------------------------------------------------------
42 vtkStandardNewMacro(VISU_PointSpriteMapperHolder);
43
44
45 //----------------------------------------------------------------------------
46 VISU_PointSpriteMapperHolder
47 ::VISU_PointSpriteMapperHolder()
48 {
49   if(MYDEBUG)
50     MESSAGE("VISU_PointSpriteMapperHolder::VISU_PointSpriteMapperHolder - "<<this);
51 }
52
53
54 //----------------------------------------------------------------------------
55 VISU_PointSpriteMapperHolder
56 ::~VISU_PointSpriteMapperHolder()
57 {
58   if(MYDEBUG)
59     MESSAGE("VISU_PointSpriteMapperHolder::~VISU_PointSpriteMapperHolder - "<<this);
60 }
61
62
63 //----------------------------------------------------------------------------
64 void 
65 VISU_PointSpriteMapperHolder
66 ::ShallowCopy(VISU_MapperHolder *theMapperHolder,
67               bool theIsCopyInput)
68 {
69   if(VISU_PointSpriteMapperHolder* aMapperHolder = dynamic_cast<VISU_PointSpriteMapperHolder*>(theMapperHolder)){
70     if(theIsCopyInput)
71       SetGaussPtsIDMapper(aMapperHolder->GetGaussPtsIDMapper());
72     
73     VISU::CopyPointSpriteDataMapper(GetPointSpriteMapper(), 
74                                     aMapperHolder->GetPointSpriteMapper(), 
75                                     theIsCopyInput);
76     myExtractPolyDataGeometry->SetImplicitFunction(aMapperHolder->GetImplicitFunction());
77   }
78 }
79
80
81 //----------------------------------------------------------------------------
82 void
83 VISU_PointSpriteMapperHolder
84 ::SetGaussPtsIDMapper(const VISU::PGaussPtsIDMapper& theIDMapper)
85 {
86   myGaussPtsIDMapper = theIDMapper;
87   SetPolyDataIDMapper(theIDMapper);
88 }
89
90
91 //----------------------------------------------------------------------------
92 const VISU::PGaussPtsIDMapper&  
93 VISU_PointSpriteMapperHolder
94 ::GetGaussPtsIDMapper()
95 {
96   return myGaussPtsIDMapper;
97 }
98
99
100 //----------------------------------------------------------------------------
101 void
102 VISU_PointSpriteMapperHolder
103 ::OnCreateMapper()
104 {
105   myPointSpriteMapper = VISU_OpenGLPointSpriteMapper::New();
106   myPointSpriteMapper->Delete();
107   myPointSpriteMapper->SetColorModeToMapScalars();
108   myPointSpriteMapper->ScalarVisibilityOn();
109   SetPolyDataMapper(myPointSpriteMapper.GetPointer());
110 }
111
112
113 //----------------------------------------------------------------------------
114 VISU_OpenGLPointSpriteMapper* 
115 VISU_PointSpriteMapperHolder
116 ::GetPointSpriteMapper()
117 {
118   GetMapper();
119   return myPointSpriteMapper.GetPointer();
120 }
121
122
123 //----------------------------------------------------------------------------