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

Side by Side Diff: remoting/client/fling_tracker.h

Issue 2869723007: [CRD iOS] Viewport fling animation (Closed)
Patch Set: Merge branch 'master' into feat-fling-animation Created 3 years, 7 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 | « remoting/client/fling_animation_unittest.cc ('k') | remoting/client/fling_tracker.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 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 #ifndef REMOTING_CLIENT_FLING_TRACKER_H_
6 #define REMOTING_CLIENT_FLING_TRACKER_H_
7
8 #include "base/time/time.h"
9
10 namespace remoting {
11
12 // A class for tracking the positions of an object moving through a viscous
13 // liquid.
14 class FlingTracker {
15 public:
16 // time_constant: The larger the number the longer it takes to fling.
17 explicit FlingTracker(float time_constant);
18
19 ~FlingTracker();
20
21 // Sets the position of the object and start fling. This will reset the
22 // existing fling.
23 void StartFling(float velocity_x, float velocity_y);
24
25 void StopFling();
26
27 bool IsFlingInProgress() const;
28
29 // time_elapsed: The time elapsed since the animation has started.
30 // Moves forward the object to catch up with |time_elapsed|. The change in
31 // positions will be written to |dx| and |dy|.
32 // Returns true if the fling is still in progress at |time_elapsed|, false
33 // otherwise, in which case |dx| and |dy| will not be touched.
34 bool TrackMovement(base::TimeDelta time_elapsed, float* dx, float* dy);
35
36 private:
37 float time_constant_;
38 float initial_speed_rate_ = 0.f;
39 float velocity_ratio_x_ = 0.f;
40 float velocity_ratio_y_ = 0.f;
41 float previous_position_x_ = 0.f;
42 float previous_position_y_ = 0.f;
43
44 base::TimeTicks start_time_;
45
46 // FlingTracker is neither copyable nor movable.
47 FlingTracker(const FlingTracker&) = delete;
48 FlingTracker& operator=(const FlingTracker&) = delete;
49 };
50
51 } // namespace remoting
52 #endif // REMOTING_CLIENT_FLING_TRACKER_H_
OLDNEW
« no previous file with comments | « remoting/client/fling_animation_unittest.cc ('k') | remoting/client/fling_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698