Beispiel #1
0
    public static void Cross(ref Vector2d U, ref Vector2d B, out FInt ret)
    {
        FInt fInt;

        U.x.Multiply(B.y.RawValue, out ret);
        U.y.Multiply(B.x.RawValue, out fInt);
        ret.Subtract(fInt.RawValue, out ret);
    }