From 84dc3c8fd9216920d011059d7e1687b4573d1d38 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 3 Mar 2023 16:30:33 +0100 Subject: [PATCH] :fire: Remove debugging prn --- common/src/app/common/geom/point.cljc | 1 - 1 file changed, 1 deletion(-) diff --git a/common/src/app/common/geom/point.cljc b/common/src/app/common/geom/point.cljc index d83a46c991..c78ceb5ac0 100644 --- a/common/src/app/common/geom/point.cljc +++ b/common/src/app/common/geom/point.cljc @@ -380,7 +380,6 @@ (defn rotate "Rotates the point around center with an angle" [p c angle] - (prn "ROTATE" p c angle) (assert (point? p) "point instance expected") (assert (point? c) "point instance expected") (let [angle (mth/radians angle)