Exemplo n.º 1
0
 /// <summary>
 /// Divides the specified vector3 to me.
 /// </summary>
 /// <param name="vector3">The vector3.</param>
 public void Divide(DVector3 vector3)
 {
     this = this / vector3;
 }
Exemplo n.º 2
0
 /// <summary>
 /// Multiplies the specified vector3 with me.
 /// </summary>
 /// <param name="vector3">The vector3.</param>
 public void Multiply(DVector3 vector3)
 {
     this = this * vector3;
 }
Exemplo n.º 3
0
 /// <summary>
 /// Adds the specified vector3 to me.
 /// </summary>
 /// <param name="vector3">The vector3.</param>
 public void Add(DVector3 vector3)
 {
     this = this + vector3;
 }