comparison OrthancStone/Sources/Toolbox/DicomStructureSet.h @ 2157:917e40af6b45 default

fix rendering of RT-STRUCT
author Sebastien Jodogne <s.jodogne@gmail.com>
date Fri, 27 Sep 2024 22:29:51 +0200
parents 16c01cc201e7
children
comparison
equal deleted inserted replaced
2156:340bde744884 2157:917e40af6b45
125 double GetSliceThickness() const 125 double GetSliceThickness() const
126 { 126 {
127 return sliceThickness_; 127 return sliceThickness_;
128 } 128 }
129 129
130 bool Project(double& x1, 130 void Project(std::list<Extent2D>& target,
131 double& y1,
132 double& x2,
133 double& y2,
134 const CoordinateSystem3D& cuttingPlane, 131 const CoordinateSystem3D& cuttingPlane,
135 const Vector& estimatedNormal, 132 const Vector& estimatedNormal,
136 double estimatedSliceThickness) const; 133 double estimatedSliceThickness) const;
137 }; 134 };
138 135