예제 #1
0
        public static ComplexF operator *(ComplexF a, ComplexF b)
        {
            ComplexF c = a;
            c.Multiply(b);

            return c;
        }
예제 #2
0
        public static ComplexF operator *(float b, ComplexF a)
        {
            ComplexF c = a;
            c.Multiply(b);

            return c;
        }
예제 #3
0
        public static ComplexF operator *(ComplexF a, float b)
        {
            ComplexF c = a;

            c.Multiply(b);

            return(c);
        }