RectangularDivision Operator |
Divides a specified set of
Rectangular coordinates by a scalar.
Namespace:
AGI.Foundation.Coordinates
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public static Rectangular operator /(
Rectangular left,
double right
)
Public Shared Operator / (
left As Rectangular,
right As Double
) As Rectangular
public:
static Rectangular operator /(
Rectangular left,
double right
)
static let inline (/)
left : Rectangular *
right : float : Rectangular
Parameters
- left
- Type: AGI.Foundation.CoordinatesRectangular
The dividend, or value which is to be divided by right. - right
- Type: SystemDouble
The divisor, or value which is to divide left.
Return Value
Type:
RectangularA set of
Rectangular coordinates that represents the result of the division.
See Also