NumCpp  2.12.1
A Templatized Header Only C++ Implementation of the Python NumPy Library
ECEF.hpp
Go to the documentation of this file.
1
28#pragma once
29
30#include <iostream>
31
33
35{
39 class ECEF final : public Cartesian
40 {
41 public:
43
48 constexpr ECEF(const Cartesian& cartesian) noexcept :
49 Cartesian(cartesian)
50 {
51 }
52 };
53} // namespace nc::coordinates::reference_frames
Cartensian coordinates.
Definition: Cartesian.hpp:45
Cartesian() noexcept=default
Default Constructor.
ECEF coordinates.
Definition: ECEF.hpp:40
constexpr ECEF(const Cartesian &cartesian) noexcept
Constructor.
Definition: ECEF.hpp:48
Cartesian() noexcept=default
Default Constructor.
Definition: AER.hpp:36