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

◆ Scale()

static Complex System.Numerics.Complex.Scale ( Complex value,
double factor )
inlinestaticprivate

Definition at line 639 of file Complex.cs.

640 {
641 double real = factor * value.m_real;
642 double imaginary = factor * value.m_imaginary;
643 return new Complex(real, imaginary);
644 }
Complex(double real, double imaginary)
Definition Complex.cs:38

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

Referenced by System.Numerics.Complex.Log10().