comparison OrthancStone/Sources/Scene2D/PolylineSceneLayer.h @ 1610:b7630b1a0253

ISceneLayer::GetBoundingBox() returns void
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 29 Oct 2020 17:13:13 +0100
parents 8563ea5d8ae4
children 9ac2a65d4172
comparison
equal deleted inserted replaced
1609:5f5c549499ff 1610:b7630b1a0253
117 virtual Type GetType() const ORTHANC_OVERRIDE 117 virtual Type GetType() const ORTHANC_OVERRIDE
118 { 118 {
119 return Type_Polyline; 119 return Type_Polyline;
120 } 120 }
121 121
122 virtual bool GetBoundingBox(Extent2D& target) const ORTHANC_OVERRIDE; 122 virtual void GetBoundingBox(Extent2D& target) const ORTHANC_OVERRIDE;
123 }; 123 };
124 } 124 }