Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ operator*() [1/3]

static Complex System.Numerics.Complex.operator* ( Complex left,
Complex right )
inlinestatic

Definition at line 149 of file Complex.cs.

150 {
151 double real = left.m_real * right.m_real - left.m_imaginary * right.m_imaginary;
152 double imaginary = left.m_imaginary * right.m_real + left.m_real * right.m_imaginary;
153 return new Complex(real, imaginary);
154 }
Complex(double real, double imaginary)
Definition Complex.cs:38

References System.Numerics.Complex.Complex(), and System.Numerics.Complex.m_imaginary.