Skip to content

Commit

Permalink
Replaced the docs in Matrix I removed. Still generic though.
Browse files Browse the repository at this point in the history
  • Loading branch information
simplexidev committed Jul 4, 2018
1 parent 9911af4 commit f73cd35
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions source/LibUISharp/src/LibUISharp/Drawing/Matrix.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,34 @@ namespace LibUISharp.Drawing
[StructLayout(LayoutKind.Sequential)]
public sealed class Matrix
{
/// <summary>
/// Represents a specific value in this <see cref="Matrix"/>.
/// </summary>
public double M11 = 1;

/// <summary>
/// Represents a specific value in this <see cref="Matrix"/>.
/// </summary>
public double M12 = 0;

/// <summary>
/// Represents a specific value in this <see cref="Matrix"/>.
/// </summary>
public double M21 = 0;

/// <summary>
/// Represents a specific value in this <see cref="Matrix"/>.
/// </summary>
public double M22 = 1;

/// <summary>
/// Represents a specific value in this <see cref="Matrix"/>.
/// </summary>
public double M31 = 0;

/// <summary>
/// Represents a specific value in this <see cref="Matrix"/>.
/// </summary>
public double M32 = 0;

/// <summary>
Expand Down

0 comments on commit f73cd35

Please sign in to comment.