From e47a1469717ad2c2f24db5f371fab6e86e96c39a Mon Sep 17 00:00:00 2001 From: Patrick Desaulniers Date: Sun, 28 Jan 2018 13:58:11 -0500 Subject: Fix Circle::getY() --- dgl/src/Geometry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dgl/src/Geometry.cpp b/dgl/src/Geometry.cpp index 2aafce70..7ea3af34 100644 --- a/dgl/src/Geometry.cpp +++ b/dgl/src/Geometry.cpp @@ -545,7 +545,7 @@ const T& Circle::getX() const noexcept template const T& Circle::getY() const noexcept { - return fPos.fX; + return fPos.fY; } template -- cgit v1.2.3