NumCpp  2.14.0
A Templatized Header Only C++ Implementation of the Python NumPy Library
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
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 :
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.
NdArray< dtype > arange(dtype inStart, dtype inStop, dtype inStep=1)
Definition arange.hpp:59