expose col 4 0-3 for translation info

This commit is contained in:
/
2024-05-31 16:47:41 +02:00
parent 594448ade2
commit 160d1ad83d

View File

@@ -46,6 +46,19 @@ namespace PveTeam.Mathematics
}
#endregion
#region Instance fields
public Vector3D Translation
{
get => new Vector3D(M41, M42, M43);
set
{
M41 = value.X;
M42 = value.Y;
M43 = value.Z;
}
}
#endregion
#region Instance methods
#endregion