Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,7 @@ public static Matrix3x2 Identity
/// <param name="column">The index of the column containing the element to get or set.</param>
/// <returns>The element at [<paramref name="row" />][<paramref name="column" />].</returns>
/// <exception cref="ArgumentOutOfRangeException">
/// <paramref name="row" /> was less than zero or greater than the number of rows, or
/// <paramref name="column" /> was less than zero or greater than the number of columns
/// <paramref name="row" /> was less than zero or greater than the number of rows, or <paramref name="column" /> was less than zero or greater than the number of columns.
/// </exception>
public unsafe float this[int row, int column]
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,7 @@ public static Matrix4x4 Identity
/// <param name="column">The index of the column containing the element to get or set.</param>
/// <returns>The element at [<paramref name="row" />][<paramref name="column" />].</returns>
/// <exception cref="ArgumentOutOfRangeException">
/// <paramref name="row" /> was less than zero or greater than the number of rows, or
/// <paramref name="column" /> was less than zero or greater than the number of columns
/// <paramref name="row" /> was less than zero or greater than the number of rows, or <paramref name="column" /> was less than zero or greater than the number of columns.
/// </exception>
public unsafe float this[int row, int column]
{
Expand Down