Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 Samsung. All rights reserved. | |
|
ajuma
2014/02/24 21:11:16
I believe this should be "The Chromium Authors" (s
| |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef UI_GFX_GEOMETRY_STEPS_H_ | |
| 6 #define UI_GFX_GEOMETRY_STEPS_H_ | |
| 7 | |
| 8 #include "base/macros.h" | |
| 9 #include "ui/gfx/gfx_export.h" | |
| 10 | |
| 11 namespace gfx { | |
| 12 | |
| 13 class GFX_EXPORT Steps { | |
| 14 public: | |
| 15 Steps(int steps, bool steps_at_start); | |
| 16 ~Steps(); | |
| 17 | |
| 18 // Returns y at the given x. | |
| 19 double Solve(double x) const; | |
| 20 | |
| 21 // Sets |min| and |max| to the bezier's minimum and maximium y values in the | |
|
ajuma
2014/02/24 21:11:16
s/bezier/step function/
| |
| 22 // interval [0, 1]. | |
| 23 void Range(double* min, double* max) const; | |
| 24 | |
| 25 private: | |
| 26 int steps_; | |
| 27 bool steps_at_start_; | |
| 28 | |
| 29 DISALLOW_ASSIGN(Steps); | |
| 30 }; | |
| 31 | |
| 32 } // namespace gfx | |
| 33 | |
| 34 #endif // UI_GFX_GEOMETRY_STEPS_H_ | |
| OLD | NEW |