Complex Constructor (Double, Double) |
Initializes a new instance with real and imaginary components.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public Complex(
double real,
double imaginary
)
Public Sub New (
real As Double,
imaginary As Double
)
public:
Complex(
double real,
double imaginary
)
new :
real : float *
imaginary : float -> Complex
Parameters
- real
- Type: SystemDouble
The real component of the complex value. - imaginary
- Type: SystemDouble
The imaginary component of the complex value.
See Also