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