Chromium Code Reviews| Index: include/core/SkRRect.h |
| diff --git a/include/core/SkRRect.h b/include/core/SkRRect.h |
| index d8029bb5c72aab7420c95af3a56e7743f5e578f8..243f450b0dd4b502d5e744137581c578a9cc1b0e 100644 |
| --- a/include/core/SkRRect.h |
| +++ b/include/core/SkRRect.h |
| @@ -176,6 +176,7 @@ public: |
| const SkRect& rect() const { return fRect; } |
| const SkVector& radii(Corner corner) const { return fRadii[corner]; } |
| + const SkVector* getAllRadii() const { return fRadii; } |
|
reed1
2013/11/04 17:46:52
// returns all 4 radii vectors, in Corner order.
scroggo
2013/11/04 19:52:54
It seems logical to me that this would return them
|
| const SkRect& getBounds() const { return fRect; } |
| /** |