public static double Length(this IVectorEntity v) { return(v.ToVector().Length); }
public static IVectorEntity Scale(this IVectorEntity v, double scale) { return(v.ToVector().Scale(scale).ToIVector()); }