Package com.github.micycle1.clipper2.core


package com.github.micycle1.clipper2.core
Core geometry types and enums used throughout the Clipper2 API.
  • Class
    Description
    All polygon clipping is performed with a Clipper object with the specific boolean operation indicated by the ClipType parameter passed in its Execute method.
    Complex polygons are defined by one or more closed paths that set both outer and inner polygon boundaries.
     
    This structure contains a sequence of Point64 vertices defining a single contour (see also terminology).
    This structure contains a sequence of PointD vertices defining a single contour (see also terminology).
    Paths64 represent one or more Path64 structures.
    PathsD represent one or more PathD structures.
     
    The Point64 structure is used to represent a single vertex (or coordinate) in a series that together make a path or contour (see Path64).
    The PointD structure is used to represent a single floating point coordinate.