(float[] a, float[] b, float[] to)
| 43 | c[2] = a[2] - b[2]; |
| 44 | } |
| 45 | public static void VectorAdd(float[] a, float[] b, float[] to) { |
| 46 | to[0] = a[0] + b[0]; |
| 47 | to[1] = a[1] + b[1]; |
| 48 | to[2] = a[2] + b[2]; |
| 49 | } |
| 50 | public static void VectorCopy(float[] from, float[] to) { |
| 51 | to[0] = from[0]; |
| 52 | to[1] = from[1]; |
no outgoing calls