comparison Framework/Toolbox/Slice.h @ 77:f5f54ed8d307 wasm

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 24 May 2017 21:13:29 +0200
parents ffa6dded91bd
children bd48431ac285
comparison
equal deleted inserted replaced
76:0aef120d7e1c 77:f5f54ed8d307
76 unsigned int GetWidth() const; 76 unsigned int GetWidth() const;
77 77
78 unsigned int GetHeight() const; 78 unsigned int GetHeight() const;
79 79
80 const DicomFrameConverter& GetConverter() const; 80 const DicomFrameConverter& GetConverter() const;
81
82 bool ContainsPlane(const SliceGeometry& plane) const
83 {
84 return geometry_.IsSamePlane(plane, thickness_);
85 }
81 }; 86 };
82 } 87 }