コード例 #1
0
 /// <summary>
 /// Calculates the multiplacation of a <see cref="Shift3f"/> with a <see cref="M34f"/>.
 /// </summary>
 public static M34f operator *(Shift3f shift, M34f mat)
 {
     return(Shift3f.Multiply(shift, mat));
 }
コード例 #2
0
 /// <summary>
 /// Calculates the multiplacation of a <see cref="Shift3f"/> with a <see cref="Scale3f"/>.
 /// </summary>
 public static M34f operator *(Shift3f shift, Scale3f scale)
 {
     return(Shift3f.Multiply(shift, scale));
 }
コード例 #3
0
 /// <summary>
 /// Calculates the multiplacation of a <see cref="Shift3f"/> with a float scalar.
 /// </summary>
 public static Shift3f operator *(float value, Shift3f shift)
 {
     return(Shift3f.Multiply(shift, value));
 }
コード例 #4
0
 /// <summary>
 /// Calculates the multiplacation of a <see cref="Shift3f"/> with a <see cref="Shift3f"/>.
 /// </summary>
 public static Shift3f operator *(Shift3f shift0, Shift3f shift1)
 {
     return(Shift3f.Multiply(shift0, shift1));
 }
コード例 #5
0
 /// <summary>
 /// </summary>
 public static M34f operator *(Shift3f shift, Rot3f rot)
 {
     return(Shift3f.Multiply(shift, (M34f)rot));
 }