diff --git a/source/Base/Circle.cpp b/source/Base/Circle.cpp index 46d37c8c..55d297c6 100644 --- a/source/Base/Circle.cpp +++ b/source/Base/Circle.cpp @@ -402,13 +402,13 @@ void Circle::SetValues(const Vector2 & np, Value nr) // ------------------------------------------------------------------------------------------------ void Circle::SetPositionEx(Value nx, Value ny) { - pos.Set(nx, ny); + pos.SetVector2Ex(nx, ny); } // ------------------------------------------------------------------------------------------------ void Circle::SetValuesEx(Value nx, Value ny, Value nr) { - pos.Set(nx, ny); + pos.SetVector2Ex(nx, ny); rad = nr; }