Esempio n. 1
0
 /// <summary>
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public bool Equals(Vector1 <T> other)
 {
     return(x.Equals(other.x));
 }
Esempio n. 2
0
 /// <summary>
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public Vector1 <T> RespectivelyDivide(Vector1 <T> other)
 {
     return(this / other);
 }
Esempio n. 3
0
 /// <summary>
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public Vector1 <T> RespectivelyMultiply(Vector1 <T> other)
 {
     return(this * other);
 }
Esempio n. 4
0
 /// <summary>
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public T Dot(Vector1 <T> other)
 {
     return((this * other).x);
 }
Esempio n. 5
0
 /// <summary>
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public Vector1 <T> Subtract(Vector1 <T> other)
 {
     return(this - other);
 }
Esempio n. 6
0
 /// <summary>
 /// </summary>
 /// <param name="other"></param>
 /// <returns></returns>
 public Vector1 <T> Add(Vector1 <T> other)
 {
     return(this + other);
 }