/// <summary>
 /// Sets the <c>y</c> component of this vector.
 /// </summary>
 ///
 /// <param name="y">component to set</param>
 ///
 public static void setY(this IModifiableVector3d vector, double y)
 {
     vector.set(1, y);
 }
 /// <summary>
 /// Sets the <c>z</c> component of this vector.
 /// </summary>
 ///
 /// <param name="z">component to set</param>
 ///
 public static void setZ(this IModifiableVector3d vector, double z)
 {
     vector.set(2, z);
 }
 /// <summary>
 /// Sets the <c>x</c> component of this vector.
 /// </summary>
 ///
 /// <param name="x">component to set</param>
 ///
 public static void setX(this IModifiableVector3d vector, double x)
 {
     vector.set(0, x);
 }