Antkeeper  0.0.1
state.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2023 Christopher J. Howard
3  *
4  * This file is part of Antkeeper source code.
5  *
6  * Antkeeper source code is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * Antkeeper source code is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with Antkeeper source code. If not, see <http://www.gnu.org/licenses/>.
18  */
19 
20 #ifndef ANTKEEPER_PHYSICS_ORBIT_STATE_HPP
21 #define ANTKEEPER_PHYSICS_ORBIT_STATE_HPP
22 
23 #include <engine/math/vector.hpp>
24 
25 namespace physics {
26 namespace orbit {
27 
33 template <class T>
34 struct state
35 {
37  typedef T scalar_type;
38 
41 
44 
47 };
48 
49 } // namespace orbit
50 } // namespace physics
51 
52 #endif // ANTKEEPER_PHYSICS_ORBIT_STATE_HPP
Physics.
Definition: constants.hpp:23
n-dimensional vector.
Definition: vector.hpp:44
Pair of orbital state Cartesian position (r) and velocity (v) vectors.
Definition: state.hpp:35
vector_type r
Cartesian orbital position vector (r).
Definition: state.hpp:43
vector_type v
Cartesian orbital velocity vector (v).
Definition: state.hpp:46
T scalar_type
Scalar type.
Definition: state.hpp:37
math::vec3< T > vector_type
Vector type.
Definition: state.hpp:40