From 2c356f98926c200635b093d60208af94ea21eb29 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Tue, 5 Apr 2016 18:01:01 +0300 Subject: [PATCH] Remove unused variable from transform-point function. --- src/uxbox/util/geom/point.cljs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/uxbox/util/geom/point.cljs b/src/uxbox/util/geom/point.cljs index ff82a05db..ce5f4efe4 100644 --- a/src/uxbox/util/geom/point.cljs +++ b/src/uxbox/util/geom/point.cljs @@ -147,10 +147,9 @@ (defn transform-point [pt mx] - (let [other (-point other)] - (Point. (+ (* (:x pt) (:a mx)) - (* (:y pt) (:c mx)) - (:tx mx)) - (+ (* (:x pt) (:b mx)) - (* (:y pt) (:d mx)) - (:ty mx))))) + (Point. (+ (* (:x pt) (:a mx)) + (* (:y pt) (:c mx)) + (:tx mx)) + (+ (* (:x pt) (:b mx)) + (* (:y pt) (:d mx)) + (:ty mx))))