angle-between ( v u -- a )


Vocabulary
math.matrices

Definition
USING: kernel math.functions math.vectors ;

IN: math.matrices

: angle-between ( v u -- a ) [ normalize ] bi@ v. acos ;