VR-Forces 4.0.4 Class Documentation
examples/exampleCloudDriver/DtCloudDriverCommon.h
Go to the documentation of this file.
00001 /******************************************************************************
00002 ** Copyright (c) 2011 MAK Technologies, Inc.
00003 ** All rights reserved.
00004 ******************************************************************************/
00005 
00009 
00010 #pragma once
00011 
00012 #include <vector>
00013 
00014 namespace makVrv
00015 {
00016    namespace vrvExampleCloudDriver
00017    {
00020       class DtWind
00021       {
00022       public:
00028          DtWind(double directionN2E,
00029             double minAltitude = 0,
00030             double maxAltitude = 100000,
00031             double speedInMps = 100);
00032 
00035          bool withinAltitude(double alt) const;
00036 
00037          double dirNtoE;
00038          double northVel;
00039          double eastVel;
00040          double minAlt;
00041          double maxAlt;
00042          double speed;
00043       };
00044 
00045       typedef std::vector<DtWind> WindList;
00046    }
00047 }

Document ID: Generated on Fri Jun 29 16:33:32 EDT 2012 from SVN revision 116588
Copyright © 2005-2012 VT MÄK Inc. All Rights Reserved (www.mak.com)