![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /********************************************************************* 00002 ** Copyright (c) 1998 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *********************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: shapePointZ.h,v $ $Revision: 1.6 $ $State: Exp $ 00007 ******************************************************************************/ 00008 #ifndef shapePointZ_H_ 00009 #define shapePointZ_H_ 00010 00011 // \file shapePointZ.h 00012 // \brief Contains the DtShapePointZ, a child of DtShapePointM, class description. 00013 00014 #include "shape/shapeDefines.h" 00015 #include <stdio.h> 00016 #include "shape/shapePointM.h" 00017 00018 00019 // The DtShapePointZ class represents a point in a shape file that, in addition to 00020 // containing a measure and x,y values (lat/lon), also contains Z values (elevation). 00021 class DT_DLL_shape DtShapePointZ : public DtShapePointM 00022 { 00023 00024 public: 00025 00026 // default constructor. 00027 DtShapePointZ(); 00028 00029 DtShapePointZ(double elevationFactor); 00030 00031 // destructor 00032 virtual ~DtShapePointZ(); 00033 00034 virtual bool load(FILE* f, bool loadMeasures = false, const DtShapeProjection* projection = NULL); 00035 }; 00036 00037 #endif