| 
            
              PointDivide Method 
             | 
          
        
         
            Division operator - divides coordinates of the specified point by scalar value.
            
 
    Namespace: 
   Accord
    Assembly:
   Accord (in Accord.dll) Version: 3.8.0
Syntaxpublic static Point Divide(
	Point point,
	float factor
)
Public Shared Function Divide ( 
	point As Point,
	factor As Single
) As Point
 Request Example
		View SourceParameters
- point
 - Type: AccordPoint
Point to divide coordinates of. - factor
 - Type: SystemSingle
Division factor. 
Return Value
Type: 
PointReturns new point which coordinates equal to coordinates of
            the specified point divided by specified value.
See Also