Beispiel #1
0
 public static F64Vec4 Log2(F64Vec4 a)
 {
     return(new F64Vec4(Fixed64.Log2(a.RawX), Fixed64.Log2(a.RawY), Fixed64.Log2(a.RawZ), Fixed64.Log2(a.RawW)));
 }
Beispiel #2
0
 public static F64 Log2(F64 a)
 {
     return(FromRaw(Fixed64.Log2(a.Raw)));
 }
 public static F64Vec3 Log2(F64Vec3 a)
 {
     return(new F64Vec3(Fixed64.Log2(a.RawX), Fixed64.Log2(a.RawY), Fixed64.Log2(a.RawZ)));
 }
 public static F64Vec2 Log2(F64Vec2 a)
 {
     return(new F64Vec2(Fixed64.Log2(a.RawX), Fixed64.Log2(a.RawY)));
 }