blob: 6c3403e733c56d4703f9d2b6082e05ee8d253bc1 [file] [log] [blame]
Brian Salomonab664fa2017-03-24 16:07:20 +00001/*
2 * Copyright 2017 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Jim Van Verth4db18ed2018-04-03 10:00:37 -04008#ifndef SkOffsetPolygon_DEFINED
9#define SkOffsetPolygon_DEFINED
Brian Salomonab664fa2017-03-24 16:07:20 +000010
Jim Van Verthda965502017-04-11 15:29:14 -040011#include <functional>
12
Mike Kleinc0bd9f92019-04-23 12:05:21 -050013#include "include/core/SkPoint.h"
14#include "include/private/SkTDArray.h"
Brian Salomonab664fa2017-03-24 16:07:20 +000015
Jim Van Vertha5ef3972019-05-01 13:28:07 -040016struct SkRect;
17
Jim Van Verthda965502017-04-11 15:29:14 -040018/**
Jim Van Verthbdde4282018-06-14 09:09:18 -040019 * Generates a polygon that is inset a constant from the boundary of a given convex polygon.
20 *
21 * @param inputPolygonVerts Array of points representing the vertices of the original polygon.
22 * It should be convex and have no coincident points.
23 * @param inputPolygonSize Number of vertices in the original polygon.
24 * @param inset How far we wish to inset the polygon. This should be a positive value.
25 * @param insetPolygon The resulting inset polygon, if any.
26 * @return true if an inset polygon exists, false otherwise.
27 */
Jim Van Verthda58cac2018-09-05 12:41:56 -040028bool SkInsetConvexPolygon(const SkPoint* inputPolygonVerts, int inputPolygonSize,
29 SkScalar inset, SkTDArray<SkPoint>* insetPolygon);
Jim Van Verth4db18ed2018-04-03 10:00:37 -040030
31/**
Jim Van Verthbdde4282018-06-14 09:09:18 -040032 * Generates a simple polygon (if possible) that is offset a constant distance from the boundary
33 * of a given simple polygon.
Jim Van Verth8664a1d2018-06-28 16:26:50 -040034 * The input polygon must be simple and have no coincident vertices or collinear edges.
Jim Van Verthbdde4282018-06-14 09:09:18 -040035 *
36 * @param inputPolygonVerts Array of points representing the vertices of the original polygon.
37 * @param inputPolygonSize Number of vertices in the original polygon.
Jim Van Vertha5ef3972019-05-01 13:28:07 -040038 * @param bounds Bounding rectangle for the original polygon.
Jim Van Verthbdde4282018-06-14 09:09:18 -040039 * @param offset How far we wish to offset the polygon.
40 * Positive values indicate insetting, negative values outsetting.
41 * @param offsetPolgon The resulting offset polygon, if any.
42 * @param polygonIndices The indices of the original polygon that map to the new one.
43 * @return true if an offset simple polygon exists, false otherwise.
44 */
Jim Van Verthda58cac2018-09-05 12:41:56 -040045bool SkOffsetSimplePolygon(const SkPoint* inputPolygonVerts, int inputPolygonSize,
Jim Van Vertha5ef3972019-05-01 13:28:07 -040046 const SkRect& bounds, SkScalar offset, SkTDArray<SkPoint>* offsetPolygon,
Jim Van Verthda58cac2018-09-05 12:41:56 -040047 SkTDArray<int>* polygonIndices = nullptr);
Brian Salomonab664fa2017-03-24 16:07:20 +000048
Jim Van Verth8664a1d2018-06-28 16:26:50 -040049/**
50 * Compute the number of points needed for a circular join when offsetting a vertex.
Jim Van Verth66c5dc52018-08-06 14:38:31 -040051 * The lengths of offset0 and offset1 don't have to equal |offset| -- only the direction matters.
Jim Van Verth8664a1d2018-06-28 16:26:50 -040052 * The segment lengths will be approximately four pixels.
53 *
54 * @param offset0 Starting offset vector direction.
55 * @param offset1 Ending offset vector direction.
Jim Van Verth66c5dc52018-08-06 14:38:31 -040056 * @param offset Offset value (can be negative).
Jim Van Verth8664a1d2018-06-28 16:26:50 -040057 * @param rotSin Sine of rotation delta per step.
58 * @param rotCos Cosine of rotation delta per step.
59 * @param n Number of steps to fill out the arc.
Jim Van Verth061cc212018-07-11 14:09:09 -040060 * @return true for success, false otherwise
Jim Van Verth8664a1d2018-06-28 16:26:50 -040061 */
Jim Van Verth66c5dc52018-08-06 14:38:31 -040062bool SkComputeRadialSteps(const SkVector& offset0, const SkVector& offset1, SkScalar offset,
Jim Van Verth8664a1d2018-06-28 16:26:50 -040063 SkScalar* rotSin, SkScalar* rotCos, int* n);
64
65/**
Jim Van Verth6784ffa2018-07-03 16:12:39 -040066 * Determine winding direction for a polygon.
67 * The input polygon must be simple or the result will be meaningless.
68 *
69 * @param polygonVerts Array of points representing the vertices of the polygon.
70 * @param polygonSize Number of vertices in the polygon.
71 * @return 1 for cw, -1 for ccw, and 0 if zero signed area (either degenerate or self-intersecting).
72 * The y-axis is assumed to be pointing down.
73 */
74int SkGetPolygonWinding(const SkPoint* polygonVerts, int polygonSize);
75
76/**
77 * Determine whether a polygon is convex or not.
78 *
79 * @param polygonVerts Array of points representing the vertices of the polygon.
80 * @param polygonSize Number of vertices in the polygon.
81 * @return true if the polygon is convex, false otherwise.
82 */
83bool SkIsConvexPolygon(const SkPoint* polygonVerts, int polygonSize);
84
85/**
Jim Van Verth8664a1d2018-06-28 16:26:50 -040086 * Determine whether a polygon is simple (i.e., not self-intersecting) or not.
Jim Van Verth6784ffa2018-07-03 16:12:39 -040087 * The input polygon must have no coincident vertices or the test will fail.
Jim Van Verth8664a1d2018-06-28 16:26:50 -040088 *
89 * @param polygonVerts Array of points representing the vertices of the polygon.
90 * @param polygonSize Number of vertices in the polygon.
91 * @return true if the polygon is simple, false otherwise.
92 */
93 bool SkIsSimplePolygon(const SkPoint* polygonVerts, int polygonSize);
94
95 /**
96 * Compute indices to triangulate the given polygon.
97 * The input polygon must be simple (i.e. it is not self-intersecting)
98 * and have no coincident vertices or collinear edges.
99 *
100 * @param polygonVerts Array of points representing the vertices of the polygon.
101 * @param indexMap Mapping from index in the given array to the final index in the triangulation.
102 * @param polygonSize Number of vertices in the polygon.
103 * @param triangleIndices Indices of the resulting triangulation.
104 * @return true if successful, false otherwise.
105 */
106 bool SkTriangulateSimplePolygon(const SkPoint* polygonVerts, uint16_t* indexMap, int polygonSize,
107 SkTDArray<uint16_t>* triangleIndices);
108
Mike Reed64284e12018-11-30 15:55:15 -0500109// Experiment: doesn't handle really big floats (returns false), always returns true for count <= 3
110bool SkIsPolyConvex_experimental(const SkPoint[], int count);
111
Brian Salomonab664fa2017-03-24 16:07:20 +0000112#endif