Creates an array containing the elements of the vector. A three-element array containing the components of the vector.
()
| 205 | /// </summary> |
| 206 | /// <returns>A three-element array containing the components of the vector.</returns> |
| 207 | public int[] ToArray() |
| 208 | { |
| 209 | return new[] { X, Y, Z }; |
| 210 | } |
| 211 | |
| 212 | /// <summary> |
| 213 | /// Adds two vectors. |
no outgoing calls