Mercurial > hg > orthanc-stone
annotate Framework/Volumes/VolumeSceneLayerSource.h @ 1244:b17959d4da06 broker
working on ParseDicomFromWadoCommand for wasm
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 06 Jan 2020 20:53:27 +0100 |
parents | 094d10ed7ec2 |
children | 2d8ab34c8c91 |
rev | line source |
---|---|
815 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5 * Copyright (C) 2017-2019 Osimis S.A., Belgium | |
6 * | |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #pragma once | |
23 | |
24 #include "../Scene2D/Scene2D.h" | |
25 #include "IVolumeSlicer.h" | |
26 | |
27 #include <boost/shared_ptr.hpp> | |
28 | |
29 namespace OrthancStone | |
30 { | |
31 /** | |
32 This class applies one "volume slicer" to a "3D volume", in order | |
33 to create one "2D scene layer" that will be set onto the "2D | |
34 scene". The style of the layer can be fine-tuned using a "layer | |
35 style configurator". The class only changes the layer if the | |
36 cutting plane has been modified since the last call to "Update()". | |
921
81d30cd93b65
Ability to ask the loader for the geometry in PULL mode (when subscribing to the messages is not possible) + small changes (removed const/ref qualifiers for boost::shared_ptr param, added traces, doc change)
Benjamin Golinvaux <bgo@osimis.io>
parents:
815
diff
changeset
|
37 */ |
815 | 38 class VolumeSceneLayerSource : public boost::noncopyable |
39 { | |
40 private: | |
41 Scene2D& scene_; | |
42 int layerDepth_; | |
43 boost::shared_ptr<IVolumeSlicer> slicer_; | |
44 std::auto_ptr<ILayerStyleConfigurator> configurator_; | |
45 std::auto_ptr<CoordinateSystem3D> lastPlane_; | |
46 uint64_t lastRevision_; | |
47 uint64_t lastConfiguratorRevision_; | |
48 | |
49 void ClearLayer(); | |
50 | |
51 public: | |
52 VolumeSceneLayerSource(Scene2D& scene, | |
53 int layerDepth, | |
54 const boost::shared_ptr<IVolumeSlicer>& slicer); | |
55 | |
934
094d10ed7ec2
VolumeSceneLayerSource dtor now clears the layer
Benjamin Golinvaux <bgo@osimis.io>
parents:
921
diff
changeset
|
56 ~VolumeSceneLayerSource(); |
094d10ed7ec2
VolumeSceneLayerSource dtor now clears the layer
Benjamin Golinvaux <bgo@osimis.io>
parents:
921
diff
changeset
|
57 |
815 | 58 const IVolumeSlicer& GetSlicer() const |
59 { | |
60 return *slicer_; | |
61 } | |
62 | |
63 void RemoveConfigurator(); | |
64 | |
65 void SetConfigurator(ILayerStyleConfigurator* configurator); | |
66 | |
67 bool HasConfigurator() const | |
68 { | |
69 return configurator_.get() != NULL; | |
70 } | |
71 | |
72 ILayerStyleConfigurator& GetConfigurator() const; | |
73 | |
74 void Update(const CoordinateSystem3D& plane); | |
75 }; | |
76 } |