Browse Source

Fix Circle<T>::getY()

pull/32/head
Patrick Desaulniers GitHub 7 years ago
parent
commit
e47a146971
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      dgl/src/Geometry.cpp

+ 1
- 1
dgl/src/Geometry.cpp View File

@@ -545,7 +545,7 @@ const T& Circle<T>::getX() const noexcept
template<typename T> template<typename T>
const T& Circle<T>::getY() const noexcept const T& Circle<T>::getY() const noexcept
{ {
return fPos.fX;
return fPos.fY;
} }


template<typename T> template<typename T>


Loading…
Cancel
Save