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