Handbook
Glossary
translation-matrix4 ( offset: float-4 -- matrix: matrix4 )
Vocabulary
math
.
matrices
.
simd
Inputs
offset
a
float-4
Outputs
matrix
a
matrix4
Definition
USING:
kernel
math.matrices.simd.private
math.vectors.simd
typed
;
IN:
math.matrices.simd
TYPED:
translation-matrix4
( offset: float-4 -- matrix: matrix4 )
[
linear>homogeneous
[
float-4{
1.0 0.0 0.0 0.0
}
float-4{
0.0 1.0 0.0 0.0
}
float-4{
0.0 0.0 1.0 0.0
}
]
dip
]
make-matrix4
;