Autodesk.AutoCAD.Geometry Namespace > ClipBoundary2d Class > ClipBoundary2d Constructor > ClipBoundary2d(Point2dCollection) Constructor
ClipBoundary2d.ClipBoundary2d(Point2dCollection) Constructor
Description

Constructs a n convex open or closed polyline clip boundary (one or more edges). 

If the polyline is not closed, the end segments are treated as if they extend to infinity. 

Input segments that lie on the boundary are considered "inside." 

Counterclockwise orientation is assumed if there is only one non-colinear clipping edge in the polygon. (Counterclockwise orientation implies that, facing from vertex n to vertex n+1, the region to the left of the segment [n,n+1] is "inside" the region.) If more than one non-colinear edge is supplied, the orientation that produces a convex edge is automatically determined. 

There is currently no test to verify that the input polygon is convex.

Visual Basic
Public Sub New(
    clipBoundary As Point2dCollection
)
C#
public ClipBoundary2d(
    Point2dCollection clipBoundary
);
Parameters
Parameters 
Description 
Point2dCollection clipBoundary 
Input 2d point array 
Links
   Comments?