@@ -111,10 +111,10 @@ public static Matrix3x3 Translation(double x, double y)
111111 /// <summary>
112112 /// Implements the operator +.
113113 /// </summary>
114- /// <param name="firstMatrix">The first <see cref="Matrix3x3"/>.</param>
115- /// <param name="secondMatrix">The second <see cref="Matrix3x3"/>.</param>
114+ /// <param name="firstMatrix">The first <see cref="Matrix3x3" />.</param>
115+ /// <param name="secondMatrix">The second <see cref="Matrix3x3" />.</param>
116116 /// <returns>
117- /// The result of the operator.
117+ /// The result of the operator.
118118 /// </returns>
119119 public static Matrix3x3 operator + ( Matrix3x3 firstMatrix , Matrix3x3 secondMatrix )
120120 {
@@ -124,49 +124,49 @@ public static Matrix3x3 Translation(double x, double y)
124124 /// <summary>
125125 /// Implements the operator -.
126126 /// </summary>
127- /// <param name="firstMatrix">The first <see cref="Matrix3x3"/>.</param>
128- /// <param name="secondMatrix">The second <see cref="Matrix3x3"/>.</param>
127+ /// <param name="firstMatrix">The first <see cref="Matrix3x3" />.</param>
128+ /// <param name="secondMatrix">The second <see cref="Matrix3x3" />.</param>
129129 /// <returns>
130- /// The result of the operator.
130+ /// The result of the operator.
131131 /// </returns>
132132 public static Matrix3x3 operator - ( Matrix3x3 firstMatrix , Matrix3x3 secondMatrix )
133133 {
134134 return FromMatrix ( Subtract ( firstMatrix , secondMatrix ) ) ;
135135 }
136136
137137 /// <summary>
138- /// Implements the operator * to multiply a <see cref="Matrix3x3"/> with the specified scalar.
138+ /// Implements the operator * to multiply a <see cref="Matrix3x3" /> with the specified scalar.
139139 /// </summary>
140140 /// <param name="scalar">The scalar.</param>
141- /// <param name="matrix">The <see cref="Matrix3x3"/>.</param>
141+ /// <param name="matrix">The <see cref="Matrix3x3" />.</param>
142142 /// <returns>
143- /// The result of the operator.
143+ /// The result of the operator.
144144 /// </returns>
145145 public static Matrix3x3 operator * ( double scalar , Matrix3x3 matrix )
146146 {
147147 return FromMatrix ( Multiply ( matrix , scalar ) ) ;
148148 }
149149
150150 /// <summary>
151- /// Implements the operator * to multiply a <see cref="Matrix3x3"/> with the specified scalar.
151+ /// Implements the operator * to multiply a <see cref="Matrix3x3" /> with the specified scalar.
152152 /// </summary>
153- /// <param name="matrix">The <see cref="Matrix3x3"/>.</param>
153+ /// <param name="matrix">The <see cref="Matrix3x3" />.</param>
154154 /// <param name="scalar">The scalar.</param>
155155 /// <returns>
156- /// The result of the operator.
156+ /// The result of the operator.
157157 /// </returns>
158158 public static Matrix3x3 operator * ( Matrix3x3 matrix , double scalar )
159159 {
160160 return FromMatrix ( Multiply ( matrix , scalar ) ) ;
161161 }
162162
163163 /// <summary>
164- /// Implements the operator * to transform a <see cref="Vector2"/> with a <see cref="Matrix3x3"/>.
164+ /// Implements the operator * to transform a <see cref="Vector2" /> with a <see cref="Matrix3x3" />.
165165 /// </summary>
166- /// <param name="matrix">The <see cref="Matrix3x3"/>.</param>
167- /// <param name="vector">The <see cref="Vector2"/>.</param>
166+ /// <param name="matrix">The <see cref="Matrix3x3" />.</param>
167+ /// <param name="vector">The <see cref="Vector2" />.</param>
168168 /// <returns>
169- /// The result of the operator.
169+ /// The result of the operator.
170170 /// </returns>
171171 public static Vector2 operator * ( Matrix3x3 matrix , Vector2 vector )
172172 {
@@ -175,12 +175,12 @@ public static Matrix3x3 Translation(double x, double y)
175175 }
176176
177177 /// <summary>
178- /// Implements the operator * to transform a <see cref="Vector2"/> with a <see cref="Matrix3x3"/>.
178+ /// Implements the operator * to transform a <see cref="Vector2" /> with a <see cref="Matrix3x3" />.
179179 /// </summary>
180- /// <param name="vector">The <see cref="Vector2"/>.</param>
181- /// <param name="matrix">The <see cref="Matrix3x3"/>.</param>
180+ /// <param name="vector">The <see cref="Vector2" />.</param>
181+ /// <param name="matrix">The <see cref="Matrix3x3" />.</param>
182182 /// <returns>
183- /// The result of the operator.
183+ /// The result of the operator.
184184 /// </returns>
185185 public static Vector2 operator * ( Vector2 vector , Matrix3x3 matrix )
186186 {
@@ -189,12 +189,12 @@ public static Matrix3x3 Translation(double x, double y)
189189 }
190190
191191 /// <summary>
192- /// Implements the operator * to transform a <see cref="Vector3"/> with a <see cref="Matrix3x3"/>.
192+ /// Implements the operator * to transform a <see cref="Vector3" /> with a <see cref="Matrix3x3" />.
193193 /// </summary>
194- /// <param name="matrix">The <see cref="Matrix3x3"/>.</param>
195- /// <param name="vector">The <see cref="Vector3"/>.</param>
194+ /// <param name="matrix">The <see cref="Matrix3x3" />.</param>
195+ /// <param name="vector">The <see cref="Vector3" />.</param>
196196 /// <returns>
197- /// The result of the operator.
197+ /// The result of the operator.
198198 /// </returns>
199199 public static Vector3 operator * ( Matrix3x3 matrix , Vector3 vector )
200200 {
@@ -203,12 +203,12 @@ public static Matrix3x3 Translation(double x, double y)
203203 }
204204
205205 /// <summary>
206- /// Implements the operator * to transform a <see cref="Vector3"/> with a <see cref="Matrix3x3"/>.
206+ /// Implements the operator * to transform a <see cref="Vector3" /> with a <see cref="Matrix3x3" />.
207207 /// </summary>
208- /// <param name="vector">The <see cref="Vector3"/>.</param>
209- /// <param name="matrix">The <see cref="Matrix3x3"/>.</param>
208+ /// <param name="vector">The <see cref="Vector3" />.</param>
209+ /// <param name="matrix">The <see cref="Matrix3x3" />.</param>
210210 /// <returns>
211- /// The result of the operator.
211+ /// The result of the operator.
212212 /// </returns>
213213 public static Vector3 operator * ( Vector3 vector , Matrix3x3 matrix )
214214 {
@@ -219,10 +219,10 @@ public static Matrix3x3 Translation(double x, double y)
219219 /// <summary>
220220 /// Implements the operator *.
221221 /// </summary>
222- /// <param name="firstMatrix">The first <see cref="Matrix3x3"/>.</param>
223- /// <param name="secondMatrix">The second <see cref="Matrix3x3"/>.</param>
222+ /// <param name="firstMatrix">The first <see cref="Matrix3x3" />.</param>
223+ /// <param name="secondMatrix">The second <see cref="Matrix3x3" />.</param>
224224 /// <returns>
225- /// The result of the operator.
225+ /// The result of the operator.
226226 /// </returns>
227227 public static Matrix3x3 operator * ( Matrix3x3 firstMatrix , Matrix3x3 secondMatrix )
228228 {
0 commit comments