]> SALOME platform Git repositories - modules/visu.git/blob - src/PIPELINE/VISU_PointSpriteMapperHolder.cxx
Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/visu.git] / src / PIPELINE / VISU_PointSpriteMapperHolder.cxx
1 //  VISU OBJECT : interactive object for VISU entities implementation
2 //
3 //  Copyright (C) 2003  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 //
24 // File:    VISU_PointSpriteMapperHolder.cxx
25 // Author:  Alexey PETROV
26 // Module : VISU
27
28
29 #include "VISU_PointSpriteMapperHolder.hxx"
30 #include "VISU_OpenGLPointSpriteMapper.hxx"
31
32 #include "VISU_PipeLineUtils.hxx"
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   }
77 }
78
79
80 //----------------------------------------------------------------------------
81 void
82 VISU_PointSpriteMapperHolder
83 ::SetGaussPtsIDMapper(const VISU::PGaussPtsIDMapper& theIDMapper)
84 {
85   myGaussPtsIDMapper = theIDMapper;
86   SetPolyDataIDMapper(theIDMapper);
87 }
88
89
90 //----------------------------------------------------------------------------
91 const VISU::PGaussPtsIDMapper&  
92 VISU_PointSpriteMapperHolder
93 ::GetGaussPtsIDMapper()
94 {
95   return myGaussPtsIDMapper;
96 }
97
98
99 //----------------------------------------------------------------------------
100 void
101 VISU_PointSpriteMapperHolder
102 ::OnCreateMapper()
103 {
104   myPointSpriteMapper = VISU_OpenGLPointSpriteMapper::New();
105   myPointSpriteMapper->Delete();
106   myPointSpriteMapper->SetColorModeToMapScalars();
107   myPointSpriteMapper->ScalarVisibilityOn();
108   SetPolyDataMapper(myPointSpriteMapper.GetPointer());
109 }
110
111
112 //----------------------------------------------------------------------------
113 VISU_OpenGLPointSpriteMapper* 
114 VISU_PointSpriteMapperHolder
115 ::GetPointSpriteMapper()
116 {
117   GetMapper();
118   return myPointSpriteMapper.GetPointer();
119 }
120
121
122 //----------------------------------------------------------------------------