diff --git a/Game/Behaviours/CircleBehaviour.cs b/Game/Behaviours/CircleBehaviour.cs index d5c7e67..6e107a7 100644 --- a/Game/Behaviours/CircleBehaviour.cs +++ b/Game/Behaviours/CircleBehaviour.cs @@ -2,7 +2,6 @@ using Microsoft.Xna.Framework; using Apos.Shapes; -using Syntriax.Engine.Core; using Syntriax.Engine.Physics2D.Primitives; namespace Pong.Behaviours; @@ -19,8 +18,6 @@ public class CircleBehaviour : Syntriax.Engine.Physics2D.Collider2DCircleBehavio public void Draw(ShapeBatch shapeBatch) { - Recalculate(); - shapeBatch.BorderCircle(CircleWorld.Center.ToDisplayVector2(), CircleWorld.Radius, Color); } }