Beispiel #1
0
 /// <summary>
 /// Calculates the division of a double scalar with a <see cref="Shift3d"/>.
 /// </summary>
 public static Shift3d operator /(double val, Shift3d shift)
 {
     return(Shift3d.Divide(val, shift));
 }
Beispiel #2
0
 /// <summary>
 /// Calculates the division of a <see cref="Shift3d"/> with a double scalar.
 /// </summary>
 public static Shift3d operator /(Shift3d shift, double val)
 {
     return(Shift3d.Divide(shift, val));
 }