|
189 | 189 | <Parameter Name="value" Type="System.Numerics.Vector2" Index="0" FrameworkAlternate="net-10.0" />
|
190 | 190 | </Parameters>
|
191 | 191 | <Docs>
|
192 |
| - <param name="value">To be added.</param> |
193 |
| - <summary>To be added.</summary> |
194 |
| - <returns>To be added.</returns> |
| 192 | + <param name="value">The value to assign to all 3 rows.</param> |
| 193 | + <summary>Creates a <see cref="T:System.Numerics.Matrix3x2" /> whose 3 rows are set to the specified value.</summary> |
| 194 | + <returns>A <see cref="T:System.Numerics.Matrix3x2" /> whose 3 rows are set to <paramref name="value" />.</returns> |
195 | 195 | <remarks>To be added.</remarks>
|
196 | 196 | </Docs>
|
197 | 197 | </Member>
|
|
220 | 220 | <Parameter Name="value" Type="System.Single" Index="0" FrameworkAlternate="net-10.0" />
|
221 | 221 | </Parameters>
|
222 | 222 | <Docs>
|
223 |
| - <param name="value">To be added.</param> |
224 |
| - <summary>To be added.</summary> |
225 |
| - <returns>To be added.</returns> |
| 223 | + <param name="value">The value to assign to all 6 elements.</param> |
| 224 | + <summary>Creates a <see cref="T:System.Numerics.Matrix3x2" /> whose 6 elements are set to the specified value.</summary> |
| 225 | + <returns>A <see cref="T:System.Numerics.Matrix3x2" /> whose 6 elements are set to <paramref name="value" />.</returns> |
226 | 226 | <remarks>To be added.</remarks>
|
227 | 227 | </Docs>
|
228 | 228 | </Member>
|
|
253 | 253 | <Parameter Name="z" Type="System.Numerics.Vector2" Index="2" FrameworkAlternate="net-10.0" />
|
254 | 254 | </Parameters>
|
255 | 255 | <Docs>
|
256 |
| - <param name="x">To be added.</param> |
257 |
| - <param name="y">To be added.</param> |
258 |
| - <param name="z">To be added.</param> |
259 |
| - <summary>To be added.</summary> |
260 |
| - <returns>To be added.</returns> |
| 256 | + <param name="x">The value to assign to <see cref="P:System.Numerics.Matrix3x2.X" />.</param> |
| 257 | + <param name="y">The value to assign to <see cref="P:System.Numerics.Matrix3x2.Y" />.</param> |
| 258 | + <param name="z">The value to assign to <see cref="P:System.Numerics.Matrix3x2.Z" />.</param> |
| 259 | + <summary>Creates a <see cref="T:System.Numerics.Matrix3x2" /> from the specified rows.</summary> |
| 260 | + <returns>A <see cref="T:System.Numerics.Matrix3x2" /> whose rows are set to the specified values.</returns> |
261 | 261 | <remarks>To be added.</remarks>
|
262 | 262 | </Docs>
|
263 | 263 | </Member>
|
|
291 | 291 | <Parameter Name="m32" Type="System.Single" Index="5" FrameworkAlternate="net-10.0" />
|
292 | 292 | </Parameters>
|
293 | 293 | <Docs>
|
294 |
| - <param name="m11">To be added.</param> |
295 |
| - <param name="m12">To be added.</param> |
296 |
| - <param name="m21">To be added.</param> |
297 |
| - <param name="m22">To be added.</param> |
298 |
| - <param name="m31">To be added.</param> |
299 |
| - <param name="m32">To be added.</param> |
300 |
| - <summary>To be added.</summary> |
301 |
| - <returns>To be added.</returns> |
| 294 | + <param name="m11">The value to assign to <see cref="F:System.Numerics.Matrix3x2.M11" />.</param> |
| 295 | + <param name="m12">The value to assign to <see cref="F:System.Numerics.Matrix3x2.M12" />.</param> |
| 296 | + <param name="m21">The value to assign to <see cref="F:System.Numerics.Matrix3x2.M21" />.</param> |
| 297 | + <param name="m22">The value to assign to <see cref="F:System.Numerics.Matrix3x2.M22" />.</param> |
| 298 | + <param name="m31">The value to assign to <see cref="F:System.Numerics.Matrix3x2.M31" />.</param> |
| 299 | + <param name="m32">The value to assign to <see cref="F:System.Numerics.Matrix3x2.M32" />.</param> |
| 300 | + <summary>Creates a <see cref="T:System.Numerics.Matrix3x2" /> from the specified elements.</summary> |
| 301 | + <returns>A <see cref="T:System.Numerics.Matrix3x2" /> whose elements are set to the specified values.</returns> |
302 | 302 | <remarks>To be added.</remarks>
|
303 | 303 | </Docs>
|
304 | 304 | </Member>
|
|
1166 | 1166 | <Parameter Name="column" Type="System.Int32" Index="1" FrameworkAlternate="net-10.0" />
|
1167 | 1167 | </Parameters>
|
1168 | 1168 | <Docs>
|
1169 |
| - <param name="row">To be added.</param> |
1170 |
| - <param name="column">To be added.</param> |
1171 |
| - <summary>To be added.</summary> |
1172 |
| - <returns>To be added.</returns> |
| 1169 | + <param name="row">The index of the row containing the element to get.</param> |
| 1170 | + <param name="column">The index of the column containing the element to get.</param> |
| 1171 | + <summary>Gets the element at the specified row and column.</summary> |
| 1172 | + <returns>The element at index: [<paramref name="row" />, <paramref name="column" />].</returns> |
1173 | 1173 | <remarks>To be added.</remarks>
|
| 1174 | + <exception cref="T:System.ArgumentOutOfRangeException"> |
| 1175 | + <para> |
| 1176 | + <paramref name="row" /> was less than zero or greater than or equal to the number of rows (<c>3</c>).</para> |
| 1177 | + <para>-or-</para> |
| 1178 | + <para> |
| 1179 | + <paramref name="column" /> was less than zero or greater than or equal to the number of columns (<c>2</c>).</para> |
| 1180 | + </exception> |
1174 | 1181 | </Docs>
|
1175 | 1182 | </Member>
|
1176 | 1183 | <Member MemberName="GetHashCode">
|
|
1255 | 1262 | <Parameter Name="index" Type="System.Int32" Index="0" FrameworkAlternate="net-10.0" />
|
1256 | 1263 | </Parameters>
|
1257 | 1264 | <Docs>
|
1258 |
| - <param name="index">To be added.</param> |
1259 |
| - <summary>To be added.</summary> |
1260 |
| - <returns>To be added.</returns> |
| 1265 | + <param name="index">The index of the row to get.</param> |
| 1266 | + <summary>Gets or sets the row at the specified index.</summary> |
| 1267 | + <returns>The row at index: [<paramref name="index" />].</returns> |
1261 | 1268 | <remarks>To be added.</remarks>
|
| 1269 | + <exception cref="T:System.ArgumentOutOfRangeException"> |
| 1270 | + <paramref name="index" /> was less than zero or greater than or equal to the number of rows (<c>3</c>).</exception> |
1262 | 1271 | </Docs>
|
1263 | 1272 | </Member>
|
1264 | 1273 | <Member MemberName="Identity">
|
|
1435 | 1444 | <Parameter Name="row" Type="System.Int32" Index="0" FrameworkAlternate="net-10.0" />
|
1436 | 1445 | </Parameters>
|
1437 | 1446 | <Docs>
|
1438 |
| - <param name="row">To be added.</param> |
1439 |
| - <summary>To be added.</summary> |
1440 |
| - <value>To be added.</value> |
| 1447 | + <param name="row">The index of the row to get or set.</param> |
| 1448 | + <summary>Gets or sets the row at the specified index.</summary> |
| 1449 | + <value>The row at index: [<paramref name="row" />].</value> |
1441 | 1450 | <remarks>To be added.</remarks>
|
| 1451 | + <exception cref="T:System.ArgumentOutOfRangeException"> |
| 1452 | + <paramref name="row" /> was less than zero or greater than or equal to the number of rows (<c>3</c>).</exception> |
1442 | 1453 | </Docs>
|
1443 | 1454 | </Member>
|
1444 | 1455 | <Member MemberName="Item">
|
|
1580 | 1591 | </ReturnValue>
|
1581 | 1592 | <Docs>
|
1582 | 1593 | <summary>The first element of the first row.</summary>
|
1583 |
| - <remarks>To be added.</remarks> |
| 1594 | + <remarks>This element exists at index: <c>[0, 0]</c> and is part of row <see cref="P:System.Numerics.Matrix3x2.X" />.</remarks> |
1584 | 1595 | </Docs>
|
1585 | 1596 | </Member>
|
1586 | 1597 | <Member MemberName="M12">
|
|
1622 | 1633 | </ReturnValue>
|
1623 | 1634 | <Docs>
|
1624 | 1635 | <summary>The second element of the first row.</summary>
|
1625 |
| - <remarks>To be added.</remarks> |
| 1636 | + <remarks>This element exists at index: <c>[0, 1]</c> and is part of row <see cref="P:System.Numerics.Matrix3x2.X" />.</remarks> |
1626 | 1637 | </Docs>
|
1627 | 1638 | </Member>
|
1628 | 1639 | <Member MemberName="M21">
|
|
1664 | 1675 | </ReturnValue>
|
1665 | 1676 | <Docs>
|
1666 | 1677 | <summary>The first element of the second row.</summary>
|
1667 |
| - <remarks>To be added.</remarks> |
| 1678 | + <remarks>This element exists at index: <c>[1, 0]</c> and is part of row <see cref="P:System.Numerics.Matrix3x2.Y" />.</remarks> |
1668 | 1679 | </Docs>
|
1669 | 1680 | </Member>
|
1670 | 1681 | <Member MemberName="M22">
|
|
1706 | 1717 | </ReturnValue>
|
1707 | 1718 | <Docs>
|
1708 | 1719 | <summary>The second element of the second row.</summary>
|
1709 |
| - <remarks>To be added.</remarks> |
| 1720 | + <remarks>This element exists at index: <c>[1, 1]</c> and is part of row <see cref="P:System.Numerics.Matrix3x2.Y" />.</remarks> |
1710 | 1721 | </Docs>
|
1711 | 1722 | </Member>
|
1712 | 1723 | <Member MemberName="M31">
|
|
1748 | 1759 | </ReturnValue>
|
1749 | 1760 | <Docs>
|
1750 | 1761 | <summary>The first element of the third row.</summary>
|
1751 |
| - <remarks>To be added.</remarks> |
| 1762 | + <remarks>This element exists at index: <c>[2, 0]</c> and is part of row <see cref="P:System.Numerics.Matrix3x2.Z" />.</remarks> |
1752 | 1763 | </Docs>
|
1753 | 1764 | </Member>
|
1754 | 1765 | <Member MemberName="M32">
|
|
1790 | 1801 | </ReturnValue>
|
1791 | 1802 | <Docs>
|
1792 | 1803 | <summary>The second element of the third row.</summary>
|
1793 |
| - <remarks>To be added.</remarks> |
| 1804 | + <remarks>This element exists at index: <c>[2, 1]</c> and is part of row <see cref="P:System.Numerics.Matrix3x2.Z" />.</remarks> |
1794 | 1805 | </Docs>
|
1795 | 1806 | </Member>
|
1796 | 1807 | <MemberGroup MemberName="Multiply">
|
|
2492 | 2503 | <Docs>
|
2493 | 2504 | <summary>Gets or sets the translation component of this matrix.</summary>
|
2494 | 2505 | <value>The translation component of the current instance.</value>
|
2495 |
| - <remarks>To be added.</remarks> |
| 2506 | + <remarks>The translation component is stored as <see cref="P:System.Numerics.Matrix3x2.Z" />.</remarks> |
2496 | 2507 | </Docs>
|
2497 | 2508 | </Member>
|
2498 | 2509 | <Member MemberName="WithElement">
|
|
2528 | 2539 | <Parameter Name="value" Type="System.Single" Index="2" FrameworkAlternate="net-10.0" />
|
2529 | 2540 | </Parameters>
|
2530 | 2541 | <Docs>
|
2531 |
| - <param name="row">To be added.</param> |
2532 |
| - <param name="column">To be added.</param> |
2533 |
| - <param name="value">To be added.</param> |
2534 |
| - <summary>To be added.</summary> |
2535 |
| - <returns>To be added.</returns> |
| 2542 | + <param name="row">The index of the row containing the element to replace.</param> |
| 2543 | + <param name="column">The index of the column containing the element to replace.</param> |
| 2544 | + <param name="value">The value to assign to the element at index: [<paramref name="row" />, <paramref name="column" />].</param> |
| 2545 | + <summary>Creates a new <see cref="T:System.Numerics.Matrix3x2" /> with the element at the specified row and column set to the given value and the remaining elements set to the same value as that in the current matrix.</summary> |
| 2546 | + <returns>A <see cref="T:System.Numerics.Matrix3x2" /> with the value of the element at index: [<paramref name="row" />, <paramref name="column" />] set to <paramref name="value" /> and the remaining elements set to the same value as that in the current matrix.</returns> |
2536 | 2547 | <remarks>To be added.</remarks>
|
| 2548 | + <exception cref="T:System.ArgumentOutOfRangeException"> |
| 2549 | + <para> |
| 2550 | + <paramref name="row" /> was less than zero or greater than or equal to the number of rows (<c>3</c>).</para> |
| 2551 | + <para>-or-</para> |
| 2552 | + <para> |
| 2553 | + <paramref name="column" /> was less than zero or greater than or equal to the number of columns (<c>2</c>).</para> |
| 2554 | + </exception> |
2537 | 2555 | </Docs>
|
2538 | 2556 | </Member>
|
2539 | 2557 | <Member MemberName="WithRow">
|
|
2568 | 2586 | <Parameter Name="value" Type="System.Numerics.Vector2" Index="1" FrameworkAlternate="net-10.0" />
|
2569 | 2587 | </Parameters>
|
2570 | 2588 | <Docs>
|
2571 |
| - <param name="index">To be added.</param> |
2572 |
| - <param name="value">To be added.</param> |
2573 |
| - <summary>To be added.</summary> |
2574 |
| - <returns>To be added.</returns> |
| 2589 | + <param name="index">The index of the row to replace.</param> |
| 2590 | + <param name="value">The value to assign to the row at index: [<paramref name="index" />].</param> |
| 2591 | + <summary>Creates a new <see cref="T:System.Numerics.Matrix3x2" /> with the row at the specified index set to the given value and the remaining rows set to the same value as that in the current matrix.</summary> |
| 2592 | + <returns>A <see cref="T:System.Numerics.Matrix3x2" /> with the value of the row at index: [<paramref name="index" />] set to <paramref name="value" /> and the remaining rows set to the same value as that in the current matrix.</returns> |
2575 | 2593 | <remarks>To be added.</remarks>
|
| 2594 | + <exception cref="T:System.ArgumentOutOfRangeException"> |
| 2595 | + <paramref name="index" /> was less than zero or greater than or equal to the number of rows (<c>3</c>).</exception> |
2576 | 2596 | </Docs>
|
2577 | 2597 | </Member>
|
2578 | 2598 | <Member MemberName="X">
|
|
2603 | 2623 | <ReturnType>System.Numerics.Vector2</ReturnType>
|
2604 | 2624 | </ReturnValue>
|
2605 | 2625 | <Docs>
|
2606 |
| - <summary>To be added.</summary> |
| 2626 | + <summary>Gets or sets the first row of the matrix.</summary> |
2607 | 2627 | <value>To be added.</value>
|
2608 |
| - <remarks>To be added.</remarks> |
| 2628 | + <remarks>This row comprises <see cref="F:System.Numerics.Matrix3x2.M11" /> and <see cref="F:System.Numerics.Matrix3x2.M12" />; it exists at index: <c>[0]</c>.</remarks> |
2609 | 2629 | </Docs>
|
2610 | 2630 | </Member>
|
2611 | 2631 | <Member MemberName="Y">
|
|
2636 | 2656 | <ReturnType>System.Numerics.Vector2</ReturnType>
|
2637 | 2657 | </ReturnValue>
|
2638 | 2658 | <Docs>
|
2639 |
| - <summary>To be added.</summary> |
| 2659 | + <summary>Gets or sets the second row of the matrix.</summary> |
2640 | 2660 | <value>To be added.</value>
|
2641 |
| - <remarks>To be added.</remarks> |
| 2661 | + <remarks>This row comprises <see cref="F:System.Numerics.Matrix3x2.M21" /> and <see cref="F:System.Numerics.Matrix3x2.M22" />; it exists at index: <c>[1]</c>.</remarks> |
2642 | 2662 | </Docs>
|
2643 | 2663 | </Member>
|
2644 | 2664 | <Member MemberName="Z">
|
|
2669 | 2689 | <ReturnType>System.Numerics.Vector2</ReturnType>
|
2670 | 2690 | </ReturnValue>
|
2671 | 2691 | <Docs>
|
2672 |
| - <summary>To be added.</summary> |
| 2692 | + <summary>Gets or sets the third row of the matrix.</summary> |
2673 | 2693 | <value>To be added.</value>
|
2674 |
| - <remarks>To be added.</remarks> |
| 2694 | + <remarks>This row comprises <see cref="F:System.Numerics.Matrix3x2.M31" /> and <see cref="F:System.Numerics.Matrix3x2.M32" />; it exists at index: <c>[2]</c>.</remarks> |
2675 | 2695 | </Docs>
|
2676 | 2696 | </Member>
|
2677 | 2697 | </Members>
|
|
0 commit comments