Affine Transformations of 2d Vectors


This vocab provides words for affine transformations of 2d vectors. It can sometimes be more suitable to use the words in this vocab, than setting up the affine transformation matrices manually.

Examples
Creates a 45 degree counter clock-wise rotation matrix and applies it to a vector:
USING: math.affine-transforms math.functions prettyprint ; 45 deg>rad <rotation> { 0 4 } a.v .
{ -2.82842712474619 2.8284271247461903 }

Applies a combined scaling and translation transform to a vector:
USING: math.affine-transforms math.functions prettyprint ; { 0 -5 } <translation> 1 2 <scale> a. { 4 3 } a.v .
{ 4.0 1.0 }