Skip to content
Snippets Groups Projects
Commit dec876fc authored by Andrew Wilson's avatar Andrew Wilson :elephant:
Browse files

REFAC: Removed unused

parent 9451c417
No related branches found
No related tags found
No related merge requests found
......@@ -54,9 +54,6 @@ public:
imstkGetMacro(Transform, const Mat4d&);
imstkGetMacro(InterpolationType, const InterpolateType&);
imstkGetMacro(OutputBounds, const Vec6d&);
imstkGetMacro(OutputSpacing, const Vec3d&);
imstkGetMacro(OutputDimensions, const Vec3i&);
///
/// \brief Set the transformation matrix
......@@ -68,19 +65,11 @@ public:
///
imstkSetMacro(InterpolationType, const InterpolateType&);
imstkSetMacro(OutputBounds, const Vec6d&);
imstkSetMacro(OutputSpacing, const Vec3d&);
imstkSetMacro(OutputDimensions, const Vec3i&);
protected:
void requestUpdate() override;
private:
Mat4d m_Transform;
InterpolateType m_InterpolationType = InterpolateType::Linear;
Vec6d m_OutputBounds = Vec6d::Zero();
Vec3d m_OutputSpacing = Vec3d::Zero();
Vec3i m_OutputDimensions = Vec3i::Zero();
};
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment