public static Vector3Double Min(Vector3Double lhs, Vector3Double rhs)
 {
     return(new Vector3Double(CGMath.Min(lhs.x, rhs.x), CGMath.Min(lhs.y, rhs.y), CGMath.Min(lhs.z, rhs.z)));
 }