diff --git a/Spherical.cpp b/Spherical.cpp index dca766b..bbf8d28 100644 --- a/Spherical.cpp +++ b/Spherical.cpp @@ -76,7 +76,7 @@ Vector3 SphericalOf::ToVector3() const { float z = this->distance * sinVertical * cosHorizontal; Vector3 v = Vector3(x, y, z); - return Vector3(); + return v; } template