RESOLVED FIXED 106026
[CSS Exclusions] The ExclusionPolygon classes should allow more than one type of "Edge" class
https://bugs.webkit.org/show_bug.cgi?id=106026
Summary [CSS Exclusions] The ExclusionPolygon classes should allow more than one type...
Hans Muller
Reported 2013-01-03 11:40:37 PST
The "first fit" algorithm for polygons, http://hansmuller-webkit.blogspot.com/2012/08/revised-algorithm-for-finding-first.html, depends on temporary "offset" edges. Offset edges can be defined simply, as a pair of vertices. The existing ExclusionPolygonEdge struct similarly manages a pair of vertices however its implemention, and some of its operations, are specific to the ExclusionPolygon class. ExclusionPolygonEdge manages a pair of indices into an ExclusionPolygon's array of vertices and provides operations for moving forwards and backwards in the polygon's vertex chain. Both edge types will have some operations in common. For example: bool overlapsRect(const FloatRect&) const; bool intersection(const VertexPair&, FloatPoint&) const; An absract VertexPair class would enable this. The ExclusionPolygonEdge struct should become a class and inherit from VertexPair.
Attachments
Patch (8.42 KB, patch)
2013-01-03 14:42 PST, Hans Muller
no flags
Hans Muller
Comment 1 2013-01-03 14:42:37 PST
Dirk Schulze
Comment 2 2013-01-04 08:36:14 PST
Comment on attachment 181224 [details] Patch LGTM. r=me
WebKit Review Bot
Comment 3 2013-01-04 08:59:25 PST
Comment on attachment 181224 [details] Patch Clearing flags on attachment: 181224 Committed r138802: <http://trac.webkit.org/changeset/138802>
WebKit Review Bot
Comment 4 2013-01-04 08:59:28 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.