ドキュメントは https://agate-pris.github.io/intar/ を参照。
System.Numerics
は下記の形式で変換行列を作成するようになっている。 ベクトルに対して変換行列を右から掛ける。
For matrix transformations, the Vector2, Vector3, and Vector4 instances are represented as rows: a vector v is transformed by a matrix M with vM multiplication.
(Matrix3x2
についても 同様 である。 )
これに対し Intar は System.Numerics
と異なり、 下記の形式で変換行列を作成する。
これは、 同じ親を持つトランスフォームが存在する時、 上記の形式であれば、 通常の乗算演算子による乗算と同じように左優先で結合した際に子の座標に対して同じ変換行列が掛けられるためである。
Intar は固定小数点数を取り扱うため、 その演算誤差は浮動小数点数の演算よりも大きくなりやすく、 演算の順序はより重要である。
Install .net 4.6.2 from Visual Studio Installer.
The following extensions are required.
- NUnit 3 Test Adapter
NugGet Package Manager is required. See below.