Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(879)

Side by Side Diff: chrome/browser/android/vr_shell/easing.cc

Issue 2696293002: Adds in-out easing type. (Closed)
Patch Set: Rebased to ToT Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/android/vr_shell/easing.h ('k') | chrome/browser/android/vr_shell/ui_scene.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/android/vr_shell/easing.h" 5 #include "chrome/browser/android/vr_shell/easing.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 8
9 #include "base/logging.h" 9 #include "base/logging.h"
10 10
(...skipping 15 matching lines...) Expand all
26 EaseIn::EaseIn(double power) : power_(power) {} 26 EaseIn::EaseIn(double power) : power_(power) {}
27 double EaseIn::CalculateValueImpl(double state) { 27 double EaseIn::CalculateValueImpl(double state) {
28 return pow(state, power_); 28 return pow(state, power_);
29 } 29 }
30 30
31 EaseOut::EaseOut(double power) : power_(power) {} 31 EaseOut::EaseOut(double power) : power_(power) {}
32 double EaseOut::CalculateValueImpl(double state) { 32 double EaseOut::CalculateValueImpl(double state) {
33 return 1.0 - pow(1.0 - state, power_); 33 return 1.0 - pow(1.0 - state, power_);
34 } 34 }
35 35
36 EaseInOut::EaseInOut(double power) : ease_in_(power) {}
37 double EaseInOut::CalculateValueImpl(double state) {
38 if (state < 0.5) {
39 return ease_in_.CalculateValueImpl(state * 2) / 2;
40 } else {
41 return 1.0 - ease_in_.CalculateValueImpl((1.0 - state) * 2) / 2;
42 }
43 }
44
36 double Linear::CalculateValueImpl(double state) { 45 double Linear::CalculateValueImpl(double state) {
37 return state; 46 return state;
38 } 47 }
39 48
40 } // namespace easing 49 } // namespace easing
41 } // namespace vr_shell 50 } // namespace vr_shell
OLDNEW
« no previous file with comments | « chrome/browser/android/vr_shell/easing.h ('k') | chrome/browser/android/vr_shell/ui_scene.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698