]> gitweb.factorcode.org Git - factor.git/commitdiff
Added USING: math-contrib
authorDoug Coleman <erg@trifocus.net>
Sun, 23 Oct 2005 23:19:45 +0000 (23:19 +0000)
committerDoug Coleman <erg@trifocus.net>
Sun, 23 Oct 2005 23:19:45 +0000 (23:19 +0000)
contrib/math/quaternions.factor

index f1282ba99f7d091fd81b3405f6dfc75edaa07608..e7e4ff4f6ec90ce6cc5801eebb23690986b74d60 100644 (file)
@@ -6,7 +6,7 @@
 
 ! Quaternions are represented as pairs of complex numbers,
 ! using the identity: (a+bi)+(c+di)j = a+bi+cj+dk.
-USING: arrays kernel math sequences ;
+USING: arrays kernel math sequences math-contrib ;
 IN: quaternions-internals
 
 : 2q [ first2 ] 2apply ; inline