Fraxinus  16.5.0-fx-rc9
An IGT application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
cxSphereMetricRep2D.cpp
Go to the documentation of this file.
1 /*=========================================================================
2 This file is part of CustusX, an Image Guided Therapy Application.
3 
4 Copyright (c) 2008-2014, SINTEF Department of Medical Technology
5 All rights reserved.
6 
7 Redistribution and use in source and binary forms, with or without
8 modification, are permitted provided that the following conditions are met:
9 
10 1. Redistributions of source code must retain the above copyright notice,
11  this list of conditions and the following disclaimer.
12 
13 2. Redistributions in binary form must reproduce the above copyright notice,
14  this list of conditions and the following disclaimer in the documentation
15  and/or other materials provided with the distribution.
16 
17 3. Neither the name of the copyright holder nor the names of its contributors
18  may be used to endorse or promote products derived from this software
19  without specific prior written permission.
20 
21 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
25 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
27 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 =========================================================================*/
32 
33 #include "cxSphereMetricRep2D.h"
34 
35 #include "boost/bind.hpp"
36 
37 #include <vtkActor.h>
38 #include <vtkPolyDataMapper.h>
39 #include <vtkProperty.h>
40 #include <vtkRenderer.h>
41 #include <vtkSectorSource.h>
42 
43 #include "cxSliceProxy.h"
44 #include "cxView.h"
45 #include "cxGraphicalDisk.h"
46 
47 #include "cxSphereMetric.h"
48 
49 namespace cx
50 {
51 
53 {
54  return wrap_new(new SphereMetricRep2D(), uid);
55 }
56 
57 SphereMetricRep2D::SphereMetricRep2D()
58 {
59 }
60 
62 {
64 }
65 
67 {
68  mDisk.reset();
70 }
71 
73 {
75 }
76 
77 SphereMetricPtr SphereMetricRep2D::getSphereMetric()
78 {
79  return boost::dynamic_pointer_cast<SphereMetric>(mMetric);
80 }
81 
83 {
84  SphereMetricPtr metric = this->getSphereMetric();
85 
86  if (!metric)
87  return;
88 
89  if (!mDisk && this->getView() && metric && mSliceProxy)
90  {
91  mDisk.reset(new GraphicalDisk());
92  mDisk->setRenderer(this->getRenderer());
93  }
94 
95  if (!mDisk)
96  return;
97 
98  Vector3D position = mSliceProxy->get_sMr() * mMetric->getRefCoord();
99 
100  mDisk->setColor(mMetric->getColor());
101  mDisk->setOutlineColor(mMetric->getColor());
102  mDisk->setOutlineWidth(0.1);
103  mDisk->setFillVisible(false);
104 
105  mDisk->setRadiusBySlicingSphere(metric->getRadius(), position[2]);
106 
107  Vector3D projectedPosition = position;
108  double offsetFromXYPlane = 0.01;
109  projectedPosition[2] = offsetFromXYPlane;
110  mDisk->setPosition(projectedPosition);
111 
112  mDisk->update();
113 }
114 
116 {
117  if (mSliceProxy)
118  disconnect(mSliceProxy.get(), SIGNAL(transformChanged(Transform3D)), this, SLOT(setModified()));
119  mSliceProxy = sliceProxy;
120  if (mSliceProxy)
121  connect(mSliceProxy.get(), SIGNAL(transformChanged(Transform3D)), this, SLOT(setModified()));
122  this->setModified();
123 }
124 
125 } // namespace cx
126 
127 
ViewPtr getView() const
Definition: cxRepImpl.cpp:104
vtkRendererPtr getRenderer()
Definition: cxRepImpl.cpp:109
virtual void removeRepActorsFromViewRenderer(ViewPtr view)
Transform3D Transform3D
Transform3D is a representation of an affine 3D transform.
boost::shared_ptr< class SliceProxy > SliceProxyPtr
virtual void clear()
static boost::shared_ptr< REP > wrap_new(REP *object, QString uid)
Definition: cxRepImpl.h:83
boost::shared_ptr< class SphereMetric > SphereMetricPtr
virtual void addRepActorsToViewRenderer(ViewPtr view)
boost::shared_ptr< class View > ViewPtr
Data class that represents a donut.
static SphereMetricRep2DPtr New(const QString &uid="")
void addRepActorsToViewRenderer(ViewPtr view)
Eigen::Vector3d Vector3D
Vector3D is a representation of a point or vector in 3D.
Definition: cxVector3D.h:63
virtual void onModifiedStartRender()
void removeRepActorsFromViewRenderer(ViewPtr view)
boost::shared_ptr< class SphereMetricRep2D > SphereMetricRep2DPtr
DataMetricPtr mMetric
void setModified()
Definition: cxRepImpl.cpp:132
void setSliceProxy(SliceProxyPtr slicer)