Adds two complex numbers and returns the result.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static Complex Add(
Complex left,
Complex right
)
Public Shared Function Add (
left As Complex,
right As Complex
) As Complex
public:
static Complex Add(
Complex left,
Complex right
)
static member Add :
left : Complex *
right : Complex -> Complex
Parameters
- left
- Type: AGI.Foundation.Coordinates.Complex
The first complex number to add. - right
- Type: AGI.Foundation.Coordinates.Complex
The second complex number to add.
Return Value
Type:
ComplexThe complex number that is the result of the addition.
See Also