WSF
Circle.hpp
Go to the documentation of this file.
1// ****************************************************************************
2// CUI
3//
4// The Advanced Framework for Simulation, Integration, and Modeling (AFSIM)
5//
6// Copyright 2019 Infoscitex, a DCS Company. All rights reserved.
7//
8// The use, dissemination or disclosure of data in this file is subject to
9// limitation or restriction. See accompanying README and LICENSE for details.
10// ****************************************************************************
11
12#ifndef CIRCLE_HPP
13#define CIRCLE_HPP
14
15#include "usmtf_export.h"
16
17#include <memory>
18#include <string>
19
20#include "Field.hpp"
21#include "LatLon.hpp"
22#include "Radius.hpp"
23#include "Set.hpp"
24
25namespace usmtf
26{
28
31
35
38class USMTF_EXPORT Circle : public Set
39{
40public:
41 Circle(const std::string& aSTF, const std::vector<Field>& aFields) noexcept;
42 const LatLon& GetCenterOfCircle() const noexcept;
43 const Radius& GetRadius() const noexcept;
44
45private:
46 LatLon mCenterOfCircle;
47 Radius mRadius;
48};
49} // namespace usmtf
50
51#endif
Circle(const std::string &aSTF, const std::vector< Field > &aFields) noexcept
Definition Circle.cpp:20
const LatLon & GetCenterOfCircle() const noexcept
Definition Circle.cpp:42
const Radius & GetRadius() const noexcept
Definition Circle.cpp:47
B.POSITION OR ROUTE POINT, LAT / LONG, SECONDS.
Definition LatLon.hpp:78
USMTF Excerpt:
Definition Radius.hpp:44
Set(const std::string &aSTF, const std::vector< Field > &aFields) noexcept
Definition Set.cpp:22
Definition Acmid.cpp:17
Copyrights Multiple, All Rights Reserved