From a3ed130211dbc557d87c4bb7d63e765677d7075f Mon Sep 17 00:00:00 2001 From: "Torsten Schulz (local)" Date: Tue, 4 Nov 2025 15:54:18 +0100 Subject: [PATCH] Add animation controls and enhance arrow drawing in CourtDrawingRender component Implemented animation controls for arrow rendering in the CourtDrawingRender component, allowing users to start and stop animations. Enhanced the drawArrow method to support progressive rendering based on animation state. Added computed properties to determine the presence of arrows and updated the component's lifecycle methods for proper animation management. Improved styling for animation buttons to enhance user experience. --- .../src/components/CourtDrawingRender.vue | 249 +++++++++++++++--- 1 file changed, 213 insertions(+), 36 deletions(-) diff --git a/frontend/src/components/CourtDrawingRender.vue b/frontend/src/components/CourtDrawingRender.vue index 6554c0a..5588fef 100644 --- a/frontend/src/components/CourtDrawingRender.vue +++ b/frontend/src/components/CourtDrawingRender.vue @@ -1,5 +1,15 @@