from your docs:
(let [color (java.awt.Color. 10 10 10)]
(g/translate translator color))
does not work correctly because translate requires opts to use translator as an arg.
the other arities use translator - which, if you are reading the docs, or just generally, is unexpected.
(let [color (java.awt.Color. 10 10 10)]
(g/translate translator color {} ))
does work. but is rather unintuitive.
from your docs:
does not work correctly because translate requires opts to use translator as an arg.
the other arities use translator - which, if you are reading the docs, or just generally, is unexpected.
does work. but is rather unintuitive.