From 484923790a98cbf86502029eb423dffe4a50a4b6 Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Mon, 25 Jul 2016 00:09:31 +0300 Subject: [PATCH] Update Circle to comply with the changes made to Vector2. --- source/Base/Circle.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }