| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  | ! Copyright (C) 2005, 2009 Slava Pestov. | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | ! See http://factorcode.org/license.txt for BSD license. | 
					
						
							| 
									
										
										
										
											2009-07-02 20:05:24 -04:00
										 |  |  | USING: accessors arrays columns kernel locals math math.bits | 
					
						
							|  |  |  | math.functions math.order math.vectors sequences | 
					
						
							|  |  |  | sequences.private fry ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | IN: math.matrices | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ! Matrices | 
					
						
							|  |  |  | : zero-matrix ( m n -- matrix )
 | 
					
						
							| 
									
										
										
										
											2009-06-07 20:12:18 -04:00
										 |  |  |     '[ _ 0 <array> ] replicate ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : identity-matrix ( n -- matrix )
 | 
					
						
							|  |  |  |     #! Make a nxn identity matrix. | 
					
						
							| 
									
										
										
										
											2008-01-09 17:36:30 -05:00
										 |  |  |     dup [ [ = 1 0 ? ] with map ] curry map ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-02 20:05:24 -04:00
										 |  |  | :: rotation-matrix3 ( axis theta -- matrix )
 | 
					
						
							|  |  |  |     theta cos :> c | 
					
						
							|  |  |  |     theta sin :> s | 
					
						
							|  |  |  |     axis first3 :> z :> y :> x | 
					
						
							|  |  |  |     x sq 1.0 x sq - c * +     x y * 1.0 c - * z s * -   x z * 1.0 c - * y s * + 3array
 | 
					
						
							|  |  |  |     x y * 1.0 c - * z s * +   y sq 1.0 y sq - c * +     y z * 1.0 c - * x s * - 3array
 | 
					
						
							|  |  |  |     x z * 1.0 c - * y s * -   y z * 1.0 c - * x s * +   z sq 1.0 z sq - c * +   3array
 | 
					
						
							|  |  |  |     3array ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :: rotation-matrix4 ( axis theta -- matrix )
 | 
					
						
							|  |  |  |     theta cos :> c | 
					
						
							|  |  |  |     theta sin :> s | 
					
						
							|  |  |  |     axis first3 :> z :> y :> x | 
					
						
							|  |  |  |     x sq 1.0 x sq - c * +     x y * 1.0 c - * z s * -   x z * 1.0 c - * y s * +   0 4array
 | 
					
						
							|  |  |  |     x y * 1.0 c - * z s * +   y sq 1.0 y sq - c * +     y z * 1.0 c - * x s * -   0 4array
 | 
					
						
							|  |  |  |     x z * 1.0 c - * y s * -   y z * 1.0 c - * x s * +   z sq 1.0 z sq - c * +     0 4array
 | 
					
						
							|  |  |  |     { 0.0 0.0 0.0 1.0 } 4array ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :: translation-matrix4 ( offset -- matrix )
 | 
					
						
							|  |  |  |     offset first3 :> z :> y :> x | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         { 1.0 0.0 0.0 x   } | 
					
						
							|  |  |  |         { 0.0 1.0 0.0 y   } | 
					
						
							|  |  |  |         { 0.0 0.0 1.0 z   } | 
					
						
							|  |  |  |         { 0.0 0.0 0.0 1.0 } | 
					
						
							|  |  |  |     } ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : >scale-factors ( number/sequence -- x y z )
 | 
					
						
							|  |  |  |     dup number? [ dup dup ] [ first3 ] if ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :: scale-matrix3 ( factors -- matrix )
 | 
					
						
							|  |  |  |     factors >scale-factors :> z :> y :> x | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         { x   0.0 0.0 } | 
					
						
							|  |  |  |         { 0.0 y   0.0 } | 
					
						
							|  |  |  |         { 0.0 0.0 z   } | 
					
						
							|  |  |  |     } ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :: scale-matrix4 ( factors -- matrix )
 | 
					
						
							|  |  |  |     factors >scale-factors :> z :> y :> x | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         { x   0.0 0.0 0.0 } | 
					
						
							|  |  |  |         { 0.0 y   0.0 0.0 } | 
					
						
							|  |  |  |         { 0.0 0.0 z   0.0 } | 
					
						
							|  |  |  |         { 0.0 0.0 0.0 1.0 } | 
					
						
							|  |  |  |     } ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : ortho-matrix4 ( dim -- matrix )
 | 
					
						
							|  |  |  |     [ recip ] map scale-matrix4 ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | :: frustum-matrix4 ( xy-dim near far -- matrix )
 | 
					
						
							|  |  |  |     xy-dim first2 :> y :> x | 
					
						
							|  |  |  |     near x /f :> xf | 
					
						
							|  |  |  |     near y /f :> yf | 
					
						
							|  |  |  |     near far + near far - /f :> zf | 
					
						
							|  |  |  |     2 near far * * near far - /f :> wf | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         { xf  0.0  0.0 0.0 } | 
					
						
							|  |  |  |         { 0.0 yf   0.0 0.0 } | 
					
						
							|  |  |  |         { 0.0 0.0  zf  wf  } | 
					
						
							|  |  |  |         { 0.0 0.0 -1.0 0.0 } | 
					
						
							|  |  |  |     } ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-04 20:13:31 -04:00
										 |  |  | :: skew-matrix4 ( theta -- matrix )
 | 
					
						
							|  |  |  |     theta tan :> zf | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         { 1.0 0.0 0.0 0.0 } | 
					
						
							|  |  |  |         { 0.0 1.0 0.0 0.0 } | 
					
						
							|  |  |  |         { 0.0 zf  1.0 0.0 } | 
					
						
							|  |  |  |         { 0.0 0.0 0.0 1.0 } | 
					
						
							|  |  |  |     } ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | ! Matrix operations | 
					
						
							|  |  |  | : mneg ( m -- m ) [ vneg ] map ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-01-09 17:36:30 -05:00
										 |  |  | : n*m ( n m -- m ) [ n*v ] with map ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | : m*n ( m n -- m ) [ v*n ] curry map ;
 | 
					
						
							| 
									
										
										
										
											2008-01-09 17:36:30 -05:00
										 |  |  | : n/m ( n m -- m ) [ n/v ] with map ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | : m/n ( m n -- m ) [ v/n ] curry map ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : m+   ( m m -- m ) [ v+ ] 2map ;
 | 
					
						
							|  |  |  | : m-   ( m m -- m ) [ v- ] 2map ;
 | 
					
						
							|  |  |  | : m*   ( m m -- m ) [ v* ] 2map ;
 | 
					
						
							|  |  |  | : m/   ( m m -- m ) [ v/ ] 2map ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-04-23 04:57:05 -04:00
										 |  |  | : v.m ( v m -- v ) flip [ v. ] with map ;
 | 
					
						
							|  |  |  | : m.v ( m v -- v ) [ v. ] curry map ;
 | 
					
						
							|  |  |  | : m.  ( m m -- m ) flip [ swap m.v ] curry map ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-07 01:24:32 -05:00
										 |  |  | : mmin ( m -- n ) [ 1/0. ] dip [ [ min ] each ] each ;
 | 
					
						
							|  |  |  | : mmax ( m -- n ) [ -1/0. ] dip [ [ max ] each ] each ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | : mnorm ( m -- n ) dup mmax abs m/n ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-13 04:36:13 -04:00
										 |  |  | <PRIVATE
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-09 03:14:14 -04:00
										 |  |  | : x ( seq -- elt ) first ; inline
 | 
					
						
							|  |  |  | : y ( seq -- elt ) second ; inline
 | 
					
						
							|  |  |  | : z ( seq -- elt ) third ; inline
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-09 03:14:14 -04:00
										 |  |  | : i ( seq1 seq2 -- n ) [ [ y ] [ z ] bi* * ] [ [ z ] [ y ] bi* * ] 2bi - ;
 | 
					
						
							|  |  |  | : j ( seq1 seq2 -- n ) [ [ z ] [ x ] bi* * ] [ [ x ] [ z ] bi* * ] 2bi - ;
 | 
					
						
							|  |  |  | : k ( seq1 seq2 -- n ) [ [ y ] [ x ] bi* * ] [ [ x ] [ y ] bi* * ] 2bi - ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-13 04:36:13 -04:00
										 |  |  | PRIVATE>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-07-07 17:26:50 -04:00
										 |  |  | : cross ( vec1 vec2 -- vec3 ) [ [ i ] [ j ] [ k ] 2tri ] keep 3sequence ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : proj ( v u -- w )
 | 
					
						
							| 
									
										
										
										
											2008-03-13 04:36:13 -04:00
										 |  |  |     [ [ v. ] [ norm-sq ] bi / ] keep n*v ;
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : (gram-schmidt) ( v seq -- newseq )
 | 
					
						
							|  |  |  |     [ dupd proj v- ] each ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : gram-schmidt ( seq -- orthogonal )
 | 
					
						
							|  |  |  |     V{ } clone [ over (gram-schmidt) over push ] reduce ;
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | : norm-gram-schmidt ( seq -- orthonormal )
 | 
					
						
							|  |  |  |     gram-schmidt [ normalize ] map ;
 | 
					
						
							| 
									
										
										
										
											2009-03-27 19:31:25 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | : cross-zip ( seq1 seq2 -- seq1xseq2 )
 | 
					
						
							| 
									
										
										
										
											2009-06-07 20:12:18 -04:00
										 |  |  |     [ [ 2array ] with map ] curry map ;
 | 
					
						
							| 
									
										
										
										
											2009-06-04 23:42:29 -04:00
										 |  |  |      | 
					
						
							|  |  |  | : m^n ( m n -- n )  | 
					
						
							|  |  |  |     make-bits over first length identity-matrix | 
					
						
							| 
									
										
										
										
											2009-08-30 04:24:25 -04:00
										 |  |  |     [ [ dupd m. ] when [ dup m. ] dip ] reduce nip ;
 |