]> gitweb.factorcode.org Git - factor.git/blob - extra/math/affine-transforms/affine-transforms-docs.factor
math: fix help-lint
[factor.git] / extra / math / affine-transforms / affine-transforms-docs.factor
1 ! Copyright (C) 2018 Björn Lindqvist
2 ! See https://factorcode.org/license.txt for BSD license
3 USING: help.markup help.syntax ;
4 IN: math.affine-transforms
5
6 ARTICLE: "math.affine-transforms" "Affine Transformations of 2d Vectors"
7 "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."
8 { $examples
9   "Creates a 45 degree counter clock-wise rotation matrix and applies it to a vector:"
10   { $example
11     "USING: math.affine-transforms math.functions prettyprint ;\n45 deg>rad <rotation> { 0 4 } a.v ."
12     "{ -2.82842712474619 2.8284271247461903 }"
13   }
14   "Applies a combined scaling and translation transform to a vector:"
15   { $example
16     "USING: math.affine-transforms math.functions prettyprint ;\n{ 0 -5 } <translation> 1 2  <scale>  a. { 4 3 } a.v ."
17     "{ 4.0 1.0 }"
18   }
19 } ;
20
21 ABOUT: "math.affine-transforms"