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

◆ operator-() [4/4]

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

Definition at line 144 of file Complex.cs.

145 {
146 return new Complex(left - right.m_real, 0.0 - right.m_imaginary);
147 }
Complex(double real, double imaginary)
Definition Complex.cs:38

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