Browse Source

Merge pull request #32 from desaulniersp/patch-1

Fix Circle<T>::getY()
pull/33/head
Filipe Coelho GitHub 6 years ago
parent
commit
c0f2c6065d
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>
const T& Circle<T>::getY() const noexcept
{
return fPos.fX;
return fPos.fY;
}

template<typename T>


Loading…
Cancel
Save