draws one or more polygonal curves
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic void Polylines(
	IEnumerable<IEnumerable<Point>> pts,
	bool isClosed,
	Scalar color,
	int thickness = 1,
	LineTypes lineType = LineTypes.Link8,
	int shift = 0
)
Public Sub Polylines ( 
	pts As IEnumerable(Of IEnumerable(Of Point)),
	isClosed As Boolean,
	color As Scalar,
	Optional thickness As Integer = 1,
	Optional lineType As LineTypes = LineTypes.Link8,
	Optional shift As Integer = 0
)
public:
void Polylines(
	IEnumerable<IEnumerable<Point>^>^ pts, 
	bool isClosed, 
	Scalar color, 
	int thickness = 1, 
	LineTypes lineType = LineTypes::Link8, 
	int shift = 0
)
member Polylines : 
        pts : IEnumerable<IEnumerable<Point>> * 
        isClosed : bool * 
        color : Scalar * 
        ?thickness : int * 
        ?lineType : LineTypes * 
        ?shift : int 
(* Defaults:
        let _thickness = defaultArg thickness 1
        let _lineType = defaultArg lineType LineTypes.Link8
        let _shift = defaultArg shift 0
*)
-> unit 
function Polylines(pts, isClosed, color, thickness, lineType, shift);
Parameters
- pts
- Type: System.Collections.GenericIEnumerableIEnumerablePoint
 
- isClosed
- Type: SystemBoolean
 
- color
- Type: OpenCvSharpScalar
 
- thickness (Optional)
- Type: SystemInt32
 
- lineType (Optional)
- Type: OpenCvSharpLineTypes
 
- shift (Optional)
- Type: SystemInt32
 
 See Also
See Also