|   | SimpleShapeCheckerIsQuadrilateral Method (ListIntPoint, ListIntPoint) | 
        
         
            Check if the specified set of points form a quadrilateral shape.
            
 
    Namespace: 
   Accord.Math.Geometry
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
 Syntax
Syntaxpublic bool IsQuadrilateral(
	List<IntPoint> edgePoints,
	out List<IntPoint> corners
)
Public Function IsQuadrilateral ( 
	edgePoints As List(Of IntPoint),
	<OutAttribute> ByRef corners As List(Of IntPoint)
) As Boolean
Parameters
- edgePoints
- Type: System.Collections.GenericListIntPoint
 Shape's points to check.
- corners
- Type: System.Collections.GenericListIntPoint
 List of quadrilateral corners on successful return.
Return Value
Type: 
BooleanReturns 
 if the specified set of points form a
            quadrilateral shape or 
 otherwise.
 See Also
See Also