40 : myBaseMSLAltitude(std::numeric_limits<
double>::min())
41 , myPointOneScale(1.0)
42 , myPointTwoScale(1.0)
48 double altitude,
double pointOneScale,
double pointTwoScale)
49 : myBaseMSLAltitude(altitude)
50 , myPointOneScale(pointOneScale)
51 , myPointTwoScale(pointTwoScale)
97 virtual void setDirection(
int index,
const DtVector& direction) = 0;
102 virtual void setScale(
int index,
float scale) = 0;
107 virtual void setLength(
int index,
float length) = 0;
110 virtual void setAltitudeBasedConfigurations(
117 virtual void clearAltitudeBasedConfigurations() = 0;
128 virtual void setIsUseForcedAltitudeEnabled(
bool enabled) = 0;
134 virtual void setForcedAltitudeToUse(
double minimumAltitudeForUse) = 0;
138 virtual void setLodOutAltitude(
double lodOutAltitude) = 0;
141 virtual void setIsLodOutAltitudeEnabled(
bool isLodOutAltitudeEnabled) = 0;
146 virtual void setGroup(
int) = 0;
std::vector< DtDirectionLineAltitudeBasedConfiguration > DtDirectionLineAltitudeBasedConfigurationCollection
A collection of altitude-based configurations.
Definition: DtOverlayDirectionLineModel.h:87
double myBaseMSLAltitude
Definition: DtOverlayDirectionLineModel.h:81
Contains declaration of DtOverlayLineModel.
DtOverlayLineModel extends the DtLineModel interface to include operations only appropriate for 2D li...
Definition: DtOverlayLineModel.h:20
~DtDirectionLineAltitudeBasedConfiguration()
Definition: DtOverlayDirectionLineModel.h:56
double myPointTwoScale
Definition: DtOverlayDirectionLineModel.h:83
double myPointOneScale
Definition: DtOverlayDirectionLineModel.h:82
#define DT_DLL_VRVCORE
Definition: vrvCore.h:20
bool operator==(const DtDirectionLineAltitudeBasedConfiguration &config) const
Definition: DtOverlayDirectionLineModel.h:74
unsigned long long DtUniqueID
Definition: DtUniqueID.h:19
DtDirectionLineAltitudeBasedConfiguration(double altitude, double pointOneScale, double pointTwoScale)
Definition: DtOverlayDirectionLineModel.h:47
DT_DLL_VRVCORE double length(const makVrv::DtCoordinateSystem &, const std::vector< DtVector > &vertices)
Returns the total distance of a segmented line defined by the provided vector of vertices. Coordinates are in local database coordinates. The coordinate system is used to convert between the local database coordinates and geocentric. All distance is in 2D – the Z value is ignored.
DtOverlayDirectionLineModel defines an abstract base class that all direction line models must implem...
Definition: DtOverlayDirectionLineModel.h:26
The DtDe is the core component of any VR-Vantage application. It owns a DtRenderer, DtDeCommunicator, as well as a DtDisplay and other things.
Definition: DtDe.h:76
DtDirectionLineAltitudeBasedConfiguration()
Definition: DtOverlayDirectionLineModel.h:39
A class that defines an altitude-based configuration for a direction line model.
Definition: DtOverlayDirectionLineModel.h:36