Browse Source
Merge pull request #32 from desaulniersp/patch-1
Fix Circle<T>::getY()
pull/33/head
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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> |
|
|
|