Geom: Fixed VecLine::Clip

git-svn-id: svn://ultimatepp.org/upp/trunk@14123 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2020-03-04 13:50:18 +00:00
parent 7ae41e6b40
commit 287c6c4505

View file

@ -286,7 +286,7 @@ public:
Pointf Intersect(VecLine another) const;
VecLine& SetClip(const Rectf& rect);
VecLine Clip(const Rectf& rect) const { return VecLine(*this).Clip(rect); }
VecLine Clip(const Rectf& rect) const { return VecLine(*this).SetClip(rect); }
double Distance(Pointf point, double *arg = NULL) const;