Example #1
0
 /// <summary>
 /// Calculates the division of a float scalar with a <see cref="Scale3f"/>.
 /// </summary>
 public static Scale3f operator /(float value, Scale3f scale)
 {
     return(Scale3f.Divide(value, scale));
 }
Example #2
0
 /// <summary>
 /// Calculates the division of a <see cref="Scale3f"/> with a float scalar.
 /// </summary>
 public static Scale3f operator /(Scale3f scale, float value)
 {
     return(Scale3f.Divide(scale, value));
 }