12345678910111213141516171819202122232425262728 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using MathNet.Numerics.LinearAlgebra.Single;
- namespace bbiwarg.DataSource
- {
- public static class VectorExtender
- {
- public static float x(this Vector v)
- {
- return v[0];
- }
- public static float y(this Vector v)
- {
- return v[1];
- }
- public static float z(this Vector v)
- {
- return v[2];
- }
- }
- }
|