public static F64Vec4 Log(F64Vec4 a) { return(new F64Vec4(Fixed64.Log(a.RawX), Fixed64.Log(a.RawY), Fixed64.Log(a.RawZ), Fixed64.Log(a.RawW))); }
public static F64 Log(F64 a) { return(FromRaw(Fixed64.Log(a.Raw))); }
public static F64Vec3 Log(F64Vec3 a) { return(new F64Vec3(Fixed64.Log(a.RawX), Fixed64.Log(a.RawY), Fixed64.Log(a.RawZ))); }
public static F64Vec2 Log(F64Vec2 a) { return(new F64Vec2(Fixed64.Log(a.RawX), Fixed64.Log(a.RawY))); }