![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /******************************************************************************* 00002 ** Copyright (c) 2010 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 *******************************************************************************/ 00005 00008 00010 00011 #pragma once 00012 00013 #include "terrainInterface/terrainPreloadGeometry.h" 00014 #include "terrainInterface/terrainInterfaceDefines.h" 00015 #include "geometry/sphere.h" 00016 00017 class DT_DLL_terrainInterface DtTerrainPreloadSphere : public DtTerrainPreloadGeometry 00018 { 00019 public: 00020 DtTerrainPreloadSphere(); 00021 DtTerrainPreloadSphere(const DtSphere& sphere); 00022 virtual ~DtTerrainPreloadSphere(); 00023 DtTerrainPreloadSphere(const DtTerrainPreloadSphere& orig); 00024 DtTerrainPreloadSphere& operator=(const DtTerrainPreloadSphere& orig); 00025 00026 virtual int type() const; 00027 00028 virtual void setSphere(const DtSphere& sphere); 00029 virtual const DtSphere& sphere() const; 00030 00031 protected: 00032 DtSphere mySphere; 00033 };