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

◆ operator-() [3/4]

static Complex System.Numerics.Complex.operator- ( Complex value)
inlinestatic

Definition at line 114 of file Complex.cs.

115 {
116 return new Complex(0.0 - value.m_real, 0.0 - value.m_imaginary);
117 }
Complex(double real, double imaginary)
Definition Complex.cs:38

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