OLD | NEW |
(Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/android/vr_shell/easing.h" |
| 6 |
| 7 #include <cmath> |
| 8 |
| 9 #include "base/logging.h" |
| 10 |
| 11 namespace vr_shell { |
| 12 namespace easing { |
| 13 |
| 14 double Easing::CalculateValue(double input) { |
| 15 DCHECK(input >= 0.0 && input <= 1.0); |
| 16 return CalculateValueImpl(input); |
| 17 } |
| 18 |
| 19 CubicBezier::CubicBezier(double p1x, double p1y, double p2x, double p2y) |
| 20 : bezier_(p1x, p1y, p2x, p2y) {} |
| 21 |
| 22 double CubicBezier::CalculateValueImpl(double state) { |
| 23 return bezier_.Solve(state); |
| 24 } |
| 25 |
| 26 EaseIn::EaseIn(double power) : power_(power) {} |
| 27 double EaseIn::CalculateValueImpl(double state) { |
| 28 return pow(state, power_); |
| 29 } |
| 30 |
| 31 EaseOut::EaseOut(double power) : power_(power) {} |
| 32 double EaseOut::CalculateValueImpl(double state) { |
| 33 return 1.0 - pow(1.0 - state, power_); |
| 34 } |
| 35 |
| 36 double Linear::CalculateValueImpl(double state) { |
| 37 return state; |
| 38 } |
| 39 |
| 40 } // namespace easing |
| 41 } // namespace vr_shell |
OLD | NEW |