2023-10-19 06:44:05 +00:00
|
|
|
//
|
|
|
|
// Created by Kyle Isom on 2/21/20.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SCCCL_MOTION2D_H
|
|
|
|
#define SCCCL_MOTION2D_H
|
|
|
|
|
|
|
|
|
2023-10-19 06:57:50 +00:00
|
|
|
#include <scmp/geom/Vector.h>
|
2023-10-19 06:44:05 +00:00
|
|
|
|
2023-10-19 06:57:50 +00:00
|
|
|
namespace scmp {
|
2023-10-19 06:44:05 +00:00
|
|
|
namespace basic {
|
|
|
|
|
|
|
|
|
2023-10-19 06:57:50 +00:00
|
|
|
scmp::geom::Vector2d Acceleration(double speed, double heading);
|
2023-10-19 06:44:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // namespace basic
|
|
|
|
} // namespace phsyics
|
|
|
|
|
|
|
|
#endif //SCCCL_MOTION2D_H
|