public static void Add(this ColladaValueArray <float> array, LowLevel.Math.real_vector2d v)
 {
     array.Add(v.I, v.J);
 }
Exemple #2
0
		public LowLevel.Math.real_vector2d ToVector2D()
		{
			var v = new LowLevel.Math.real_vector2d();

			v.I = I;
			v.J = J;

			return v;
		}