TR-mbed 1.0
Loading...
Searching...
No Matches
Pose2D.h
Go to the documentation of this file.
1//
2// Created by ben332004 on 3/13/23.
3//
4
5#ifndef TR_EMBEDDED_POSE2D_H
6#define TR_EMBEDDED_POSE2D_H
7
8
13class Pose2D {
14
15public:
23 Pose2D(double x, double y, double angleRadians);
24
30 Pose2D minus(Pose2D other);
31
42 Pose2D interpolate(Pose2D other, double fractionThis);
43
44 double x;
45 double y;
47};
48
49
50#endif //TR_EMBEDDED_POSE2D_H
Definition Pose2D.h:13
double angleRadians
Definition Pose2D.h:46
double x
Definition Pose2D.h:44
Pose2D minus(Pose2D other)
Definition Pose2D.cpp:13
double y
Definition Pose2D.h:45
Pose2D interpolate(Pose2D other, double fractionThis)
Definition Pose2D.cpp:21