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))))