comparison Framework/Toolbox/Slice.h @ 89:f244018a4e4b wasm

BUGGY- trying to remove IVolumeSlicesObserver
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 26 May 2017 18:27:59 +0200
parents bd48431ac285
children efd9ef2b67f1
comparison
equal deleted inserted replaced
88:90bf4116a23c 89:f244018a4e4b
93 93
94 unsigned int GetHeight() const; 94 unsigned int GetHeight() const;
95 95
96 const DicomFrameConverter& GetConverter() const; 96 const DicomFrameConverter& GetConverter() const;
97 97
98 bool ContainsPlane(const SliceGeometry& plane) const 98 bool ContainsPlane(const SliceGeometry& plane) const;
99 {
100 return geometry_.IsSamePlane(plane, thickness_);
101 }
102 }; 99 };
103 } 100 }