0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-27 15:11:26 -05:00

Add missing type hints on Matrix multiply function.

This commit is contained in:
Andrey Antukh 2021-12-28 23:21:05 +01:00 committed by Alonso Torres
parent 914b41fcd4
commit e5885e83eb

View file

@ -36,7 +36,7 @@
(apply matrix params)))
(defn multiply
([m1 m2]
([^Matrix m1 ^Matrix m2]
(let [m1a (.-a m1)
m1b (.-b m1)
m1c (.-c m1)