Bug 45015 - Add helpers to FloatRect to compute bounding box from points
Summary: Add helpers to FloatRect to compute bounding box from points
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Layout and Rendering (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Kenneth Russell
URL:
Keywords:
Depends on:
Blocks: 44729
  Show dependency treegraph
 
Reported: 2010-08-31 19:15 PDT by Kenneth Russell
Modified: 2010-09-01 10:10 PDT (History)
4 users (show)

See Also:


Attachments
Patch (5.46 KB, patch)
2010-08-31 19:19 PDT, Kenneth Russell
simon.fraser: review+
kbr: commit-queue-
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Kenneth Russell 2010-08-31 19:15:13 PDT
For some geometric algorithms, it is necessary to compute the bounding box of a set of points. Methods on FloatRect for this purpose would be very helpful.
Comment 1 Kenneth Russell 2010-08-31 19:19:59 PDT
Created attachment 66159 [details]
Patch

From the ChangeLog:

Added fitToPoints, including a few overloaded variants for the cases of two, three and four points. I opted not to add a generalized version taking const FloatRect* or Vector<FloatRect> at the present time because for my own purposes they are unnecessary, and the specific versions can be more tightly coded. Also added left() and top() for symmetry with right() and bottom(). These changes have been tested with new code to be added later.
Comment 2 Simon Fraser (smfr) 2010-08-31 20:24:07 PDT
Comment on attachment 66159 [details]
Patch

r=me but please look at FloatQuad and see if any of the methods in there could be updated.
Comment 3 Kenneth Russell 2010-09-01 09:56:59 PDT
(In reply to comment #2)
> (From update of attachment 66159 [details])
> r=me but please look at FloatQuad and see if any of the methods in there could be updated.

I checked the FloatQuad class but none of these changes apply there.
Comment 4 Kenneth Russell 2010-09-01 09:59:24 PDT
Committed r66611: <http://trac.webkit.org/changeset/66611>