Added missing summeries #2

This commit is contained in:
Michel Fedde 2021-03-18 10:13:43 +01:00
parent 31777faa11
commit c8db1ce8bc
26 changed files with 261 additions and 36 deletions

View file

@ -53,6 +53,11 @@ namespace SM.Base.Drawing
return _modelMatrix;
}
/// <summary>
/// This combines the current matrix with the provided one.
/// </summary>
/// <param name="matrix"></param>
/// <returns></returns>
public Matrix4 MergeMatrix(Matrix4 matrix)
{
return GetMatrix() * matrix;

View file

@ -13,6 +13,9 @@ namespace SM.Base.Drawing
/// </summary>
public class Material
{
/// <summary>
/// A setting to enable Blending.
/// </summary>
public bool Blending = false;
/// <summary>