Constructors

Properties

filteredSplitPolygons: Vertex[][]

The final result: all valid split-polygons. These are making up the actual polygon inset. Note: list may be empty. Depending on the offset amount there is not a guaranteed offset polygon existing.

insetLines: Line[] = []

The simple inset lines, directly generated by offsetting the original polygon lines by the given amount.

insetPolygon: Polygon

The inset polygon lines resembling an actual polygon instance (not just a sequence of lines).

insetPolygonLines: Line[] = []

The cropped inset lines that makes up the first direct iteration of the inset polygon. This one will probably be self-intersecting.

insetRectanglePolygons: Polygon[]

Each polygon line and it's offsetted inset-line resemble a rectangular polygon. Array with 4 vertices each

optimizedPolygon: Polygon

The input polygon, but without ear edges.

originalPolygonLines: Line[] = []

The original polygon as a sequence of line objects. This is easier to use than a list of points.

polygon: Polygon

The polygon to work with.

splitPolygons: Vertex[][] = []

The inset polygon split up into simple non-self-intersecting polygons. Represented as a list of vertex-lists. Each sub-list represents a single polygon.

Methods

  • This method transforms each polygon line into a new line by moving it to the inside direction of the polygon (by the given insetAmount).

    Parameters

    • polygonLines: Line[]
    • insetAmount: number

    Returns Line[]

    The transformed lines. The result array has the same length and order as the input array.

  • For a sequence of inset polygon lines get the inset polygon by detecting useful intersections (by cropping or extending them).

    The returned lines resemble a new polygon.

    Please note that the returned polygon can be self-intersecting!

    Parameters

    Returns Line[]

    The cropped or exented inset polygon lines.

  • Converts two lists (same length) of original polygon lines and inset lines (interpreted as pairs) to a list of rectangular polyons.

    Parameters

    • originalPolygonLines: Line[]
    • insetLines: Line[]

    Returns Polygon[]

    A list of rectangular polygons; each returned polyon has exactly four vertices.

    Static

  • Filter split polygons: only keep those that do not (signifiantly) interset with any rectangles.

    Parameters

    • splitPolygonsVertices: Vertex[][]
    • insetRectanglePolygons: Polygon[]
    • Optional intersectionEpsilon: number

      (optional, default is 1.0) A epsislon to define a tolerance for checking if two polygons intersect.

    Returns Vertex[][]

    Static

  • Filter split polygons: only keep those whose vertices are all contained inside the original polygon. Reason: scaling too much will result in excessive translation beyond the opposite bounds of the polygon (like more than 200% of possible insetting).

    Parameters

    Returns Vertex[][]

    The filtered polygon list.

  • For simplification I'm using a callback generator function here.

    Parameters

    • splitPolyVerts: Vertex[]
    • eps: number
    • _splitPolyIndex: number

    Returns ((rectanglePoly, _rectanglePolyIndex) => boolean)

    The callback for an Array.some parameter.

      • (rectanglePoly, _rectanglePolyIndex): boolean
      • Parameters

        • rectanglePoly: Polygon
        • _rectanglePolyIndex: number

        Returns boolean

  • Optimize the inset polygon by removing critical ear edges. Such an is identified by: the edge itself is completely located inside its neighbours inset rectangle.

    In this process multiple edges from the ear might be dropped and two adjacent edges get a new common intersection point.

    Note: this method is not working as expected in all cases and quite experimental.

    Parameters

    Returns void