commit c0f2c6065df2efb1511ef5ff441b37862da717ce
parent 28c8dbe12c30db10865333dc57197ba55f0597fd
Author: Filipe Coelho <falktx@falktx.com>
Date: Sun, 28 Jan 2018 20:04:21 +0100
Merge pull request #32 from desaulniersp/patch-1
Fix Circle<T>::getY()
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dgl/src/Geometry.cpp b/dgl/src/Geometry.cpp
@@ -545,7 +545,7 @@ const T& Circle<T>::getX() const noexcept
template<typename T>
const T& Circle<T>::getY() const noexcept
{
- return fPos.fX;
+ return fPos.fY;
}
template<typename T>