36 #include <boost/bind.hpp> 37 #include <vtkRenderer.h> 38 #include <vtkMatrix4x4.h> 39 #include <vtkActor2D.h> 40 #include <vtkTextProperty.h> 41 #include <vtkTextActor3D.h> 53 mConnectedTo3D =
false;
57 QColor color1 = QColor::fromRgbF(0, 1, 1);
58 QColor color2 = QColor::fromRgbF(0, 0.6, 1);
59 QColor color3 = QColor::fromRgbF(0.5, 0.5, 1);
60 QColor color4 = QColor::fromRgbF(0.75, 0.75, 1);
110 return mVisible && mConnectedTo3D;
129 if (!mData.count(type))
142 mData[type].vp_s = vp_s;
150 slice->initializeFromPlane(type,
false,
true, 1, 0.25);
171 SlicePlanes3DRep::SlicePlanes3DRep() :
179 mProxy->connectTo3D(
false);
191 mViewportListener->setCallback(boost::bind(&SlicePlanes3DRep::rescale,
this));
195 mViewportListener.reset();
202 if (mViewportListener)
203 mViewportListener->startListen(view->getRenderer());
208 if (mViewportListener)
209 mViewportListener->stopListen();
213 void SlicePlanes3DRep::clearActors()
215 if (!this->getView())
218 for (DataMap::iterator i = mData.begin(); i != mData.end(); ++i)
220 this->getRenderer()->RemoveActor(i->second.mText);
221 i->second.mPoint.reset();
222 i->second.mRect.reset();
223 i->second.mAxes.reset();
228 void SlicePlanes3DRep::rescale()
233 void SlicePlanes3DRep::changedSlot()
235 if (!this->getView())
238 if (!mProxy->getVisible())
246 for (SlicePlanesProxy::DataMap::iterator i = baseData.begin(); i != baseData.end(); ++i)
249 DataType& data = mData[i->first];
253 data.mText = vtkTextActor3DPtr::New();
256 data.mText->GetTextProperty()->SetFontSize(mProxy->getProperties().m3DFontSize);
257 data.mText->GetTextProperty()->BoldOn();
258 data.mText->GetTextProperty()->SetVerticalJustificationToBottom();
259 data.mText->GetTextProperty()->SetJustificationToLeft();
260 data.mText->GetTextProperty()->ShadowOff();
261 this->getRenderer()->AddActor(data.mText);
265 data.mRect.reset(
new Rect3D(this->getRenderer(), base.
mColor));
276 if (mViewportListener)
279 double size = mViewportListener->getVpnZoom(focus);
280 double planeSize = (i->second.vp_s.range()[0] + i->second.vp_s.range()[1]) / 2.0;
281 double sphereSize = std::min(0.1 / size, planeSize/5);
282 sphereSize = sphereSize/50;
283 data.mText->GetTextProperty()->SetFontSize(mProxy->getProperties().m3DFontSize);
294 data.mText->SetUserMatrix((rMs * T * S * T2).
getVtkMatrix());
299 data.mPoint->setColor(base.
mColor);
300 data.mPoint->setValue(rMs.coord(pos_s));
304 data.mRect->updatePosition(base.
vp_s, rMs);
305 data.mRect->setLine(mProxy->getProperties().mLineWidth != 0, mProxy->getProperties().mLineWidth);
306 data.mRect->setSurface(mProxy->getDrawPlanes());
310 data.mAxes->setPosition(rMs);
318 mProxy->connectTo3D(
true);
319 connect(mProxy.get(), SIGNAL(
changed()),
this, SLOT(changedSlot()));
332 SlicePlanes3DMarkerIn2DRep::SlicePlanes3DMarkerIn2DRep() :
346 mText->textProperty()->BoldOn();
347 mText->textProperty()->SetVerticalJustificationToTop();
348 mText->textProperty()->SetJustificationToLeft();
350 mText->getActor()->GetPositionCoordinate()->SetCoordinateSystemToNormalizedViewport();
351 view->getRenderer()->AddActor2D(mText->getActor());
357 view->getRenderer()->RemoveActor(mText->getActor());
361 void SlicePlanes3DMarkerIn2DRep::changedSlot()
365 mText->getActor()->SetVisibility(mProxy->getVisible() && mProxy->getData().count(mType));
376 connect(mProxy.get(), SIGNAL(
changed()),
this, SLOT(changedSlot()));
virtual ~SlicePlanes3DRep()
virtual ~SlicePlanes3DMarkerIn2DRep()
void setViewportData(PLANE_TYPE type, SliceProxyPtr slice, const DoubleBoundingBox3D &vp_s)
ptCORONAL
a slice seen from the front of the patient
static SliceProxyPtr create(PatientModelServicePtr dataManager)
Vector3D getColorAsVector3D(QColor color)
boost::shared_ptr< class SlicePlanesProxy > SlicePlanesProxyPtr
PLANE_TYPE mClipPlane
what plane to use for 3D clipping
Transform3D createTransformScale(const Vector3D &scale_)
Transform3D Transform3D
Transform3D is a representation of an affine 3D transform.
std::map< PLANE_TYPE, DataType > DataMap
void setDrawPlanes(bool on)
static SlicePlanes3DRepPtr New(const QString &uid="")
Vector3D mPointPos_normvp
position of symbol in normalized space <0..1, 0..1>
int mLineWidth
draw wireframe lines. 0 means no line
cstring_cast_Placeholder cstring_cast(const T &val)
Display a set of planes in 3D.
virtual void removeRepActorsFromViewRenderer(ViewPtr view)
void setVisible(bool visible)
void connectTo3D(bool on)
ptAXIAL
a slice seen from the top of the patient
boost::shared_ptr< class View > ViewPtr
static SlicePlanes3DMarkerIn2DRepPtr New(const QString &uid="")
Transform3D createTransformNormalize(const DoubleBoundingBox3D &in, const DoubleBoundingBox3D &out)
Listens to changes in viewport and camera matrix.
ptSAGITTAL
a slice seen from the side of the patient
void setProxy(SlicePlanesProxyPtr proxy)
bool getDrawPlanes() const
Display annotations for the SlicePlanesProxy planes in 2D.
void addSimpleSlicePlane(PLANE_TYPE type, PatientModelServicePtr dataManager)
std::map< PLANE_TYPE, QString > mSymbol
normalized RGB
std::map< PLANE_TYPE, QColor > mColor
ptTOOLSIDEPLANE
z-rotated 90* relative to anyplane like side plane, but always kept oriented like the plane defined b...
Helper for drawing text in 2D.
boost::shared_ptr< class PatientModelService > PatientModelServicePtr
Transform3D createTransformTranslate(const Vector3D &translation)
Default implementation of Rep.
Representation of a floating-point bounding box in 3D. The data are stored as {xmin,xmax,ymin,ymax,zmin,zmax}, in order to simplify communication with vtk.
Vector3D mPointPos_normvp
void setProxy(PLANE_TYPE type, SlicePlanesProxyPtr proxy)
boost::shared_ptr< class SlicePlanes3DRep > SlicePlanes3DRepPtr
Eigen::Vector3d Vector3D
Vector3D is a representation of a point or vector in 3D.
ptRADIALPLANE
y-rotated 90* relative to anyplane (bird's view)
virtual void removeRepActorsFromViewRenderer(ViewPtr view)
virtual void addRepActorsToViewRenderer(ViewPtr view)
void setDynamicLabelSize(bool on)
ptANYPLANE
a plane aligned with the tool base plane
boost::shared_ptr< class SlicePlanes3DMarkerIn2DRep > SlicePlanes3DMarkerIn2DRepPtr
virtual void addRepActorsToViewRenderer(ViewPtr view)
SliceProxyPtr mSliceProxy
ptSIDEPLANE
z-rotated 90* relative to anyplane (dual anyplane)
Helper for drawing a rectangle in 3D.
Namespace for all CustusX production code.