MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Translation

Method Translation

Source/Engine/Core/Math/Matrix.cpp:647–654  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

645}
646
647Matrix Matrix::Translation(const Float3& value)
648{
649 Matrix result = Identity;
650 result.M41 = value.X;
651 result.M42 = value.Y;
652 result.M43 = value.Z;
653 return result;
654}
655
656void Matrix::Translation(const Float3& value, Matrix& result)
657{

Callers 13

TestWorldMatrixMethod · 0.45
UIControlClass · 0.45
UICanvasClass · 0.45
GetWorldMatrixMethod · 0.45
Intersects3DMethod · 0.45
ApplyTransformMethod · 0.45
RotateSelectionMethod · 0.45
ApplyTransformMethod · 0.45
DrawMethod · 0.45
DrawMethod · 0.45
DrawMethod · 0.45
OnApplyTransformationMethod · 0.45

Calls

no outgoing calls

Tested by 1

TestWorldMatrixMethod · 0.36