mirror of
https://github.com/penpot/penpot.git
synced 2025-01-26 08:29:42 -05:00
Move matrix math and svg under uxbox.util ns.
This commit is contained in:
parent
ce5675639f
commit
db73b0787b
4 changed files with 6 additions and 6 deletions
|
@ -4,7 +4,7 @@
|
||||||
[cuerdas.core :as str]
|
[cuerdas.core :as str]
|
||||||
[uxbox.state :as st]
|
[uxbox.state :as st]
|
||||||
[uxbox.shapes :as shapes]
|
[uxbox.shapes :as shapes]
|
||||||
[uxbox.svg :as svg]
|
[uxbox.util.svg :as svg]
|
||||||
[uxbox.util.data :refer (remove-nil-vals)]))
|
[uxbox.util.data :refer (remove-nil-vals)]))
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
(ns uxbox.math
|
(ns uxbox.util.math
|
||||||
"A collection of math utils."
|
"A collection of math utils."
|
||||||
(:require [goog.math :as math]))
|
(:require [goog.math :as math]))
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
(ns uxbox.matrix
|
(ns uxbox.util.matrix
|
||||||
"A lightweight abstraction over Matrix library
|
"A lightweight abstraction over Matrix library
|
||||||
of the Google Closure Library."
|
of the Google Closure Library."
|
||||||
(:import goog.math.Matrix
|
(:import goog.math.Matrix
|
|
@ -1,8 +1,8 @@
|
||||||
(ns uxbox.svg
|
(ns uxbox.util.svg
|
||||||
"A svg related utils."
|
"A svg related utils."
|
||||||
(:require [cuerdas.core :as str]
|
(:require [cuerdas.core :as str]
|
||||||
[uxbox.matrix :as mtx]
|
[uxbox.util.matrix :as mtx]
|
||||||
[uxbox.math :as mth]
|
[uxbox.util.math :as mth]
|
||||||
[uxbox.util.data :refer (without-keys)]))
|
[uxbox.util.data :refer (without-keys)]))
|
||||||
|
|
||||||
(defn translate-matrix
|
(defn translate-matrix
|
Loading…
Add table
Reference in a new issue