m5stack-avatar
Loading...
Searching...
No Matches
Gaze.h
1// Copyright (c) Shinya Ishikawa. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for full
3// license information.
4
5#ifndef GAZE_H_
6#define GAZE_H_
7
8namespace m5avatar {
9class Gaze {
10 private:
11 float v;
12 float h;
13
14 public:
15 Gaze();
16 Gaze(float v, float h);
17 ~Gaze() = default;
18 Gaze(const Gaze &other) = default;
19 Gaze &operator=(const Gaze &other) = default;
20 float getVertical() const;
21 float getHorizontal() const;
22};
23} // namespace m5avatar
24
25#endif // GAZE_H_
Definition: Gaze.h:9