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