mirror of
https://github.com/penpot/penpot.git
synced 2026-05-26 10:23:45 +00:00
Add abs function to math tools.
This commit is contained in:
parent
0eec54fc30
commit
8b26da4e36
@ -2,6 +2,10 @@
|
|||||||
"A collection of math utils."
|
"A collection of math utils."
|
||||||
(:require [goog.math :as math]))
|
(:require [goog.math :as math]))
|
||||||
|
|
||||||
|
(defn abs
|
||||||
|
[^number v]
|
||||||
|
(js/Math.abs v))
|
||||||
|
|
||||||
(defn sin
|
(defn sin
|
||||||
"Returns the sine of a number"
|
"Returns the sine of a number"
|
||||||
[^number v]
|
[^number v]
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user