12#ifndef WSFRECTANGULARFIELDOFVIEW_HPP
13#define WSFRECTANGULARFIELDOFVIEW_HPP
15#include "wsf_export.h"
39 aMinAzFOV = mMinAzFOV;
40 aMaxAzFOV = mMaxAzFOV;
48 aMinElFOV = mMinElFOV;
49 aMaxElFOV = mMaxElFOV;
60 double mMinAzFOV{-UtMath::cPI};
61 double mMaxAzFOV{UtMath::cPI};
62 double mMinElFOV{-UtMath::cPI_OVER_2};
63 double mMaxElFOV{UtMath::cPI_OVER_2};
bool operator!=(int aId, const WsfStringInt &aRhs)
Not equal relational operator for the case of an integer on the LHS and a StringId on the RHS.
Definition WsfStringId.hpp:75
bool operator==(int aId, const WsfStringInt &aRhs)
Equal relational operator for the case of an integer on the LHS and a StringId on the RHS.
Definition WsfStringId.hpp:69
#define WSF_EXPORT
Definition WsfXIO_Export.hpp:35
Definition WsfFieldOfView.hpp:36
virtual bool WithinFieldOfView(double aThisToTgtAz, double aThisToTgtEl)=0
virtual bool SetElevationFieldOfView(double aMinElFOV, double aMaxElFOV)
Definition WsfFieldOfView.hpp:103
virtual bool SetAzimuthFieldOfView(double aMinAzFOV, double aMaxAzFOV)
Definition WsfFieldOfView.hpp:96
virtual bool ProcessInput(UtInput &aInput)
Definition WsfFieldOfView.cpp:29
WsfRectangularFieldOfView()
Definition WsfRectangularFieldOfView.cpp:17
WsfFieldOfView * Clone() const override
Definition WsfRectangularFieldOfView.hpp:33
const char * GetScriptClassName() const override
Definition WsfRectangularFieldOfView.hpp:31
bool GetAzimuthFieldOfView(double &aMinAzFOV, double &aMaxAzFOV) const override
Definition WsfRectangularFieldOfView.hpp:37
bool GetElevationFieldOfView(double &aMinElFOV, double &aMaxElFOV) const override
Definition WsfRectangularFieldOfView.hpp:46