![]() |
VR-Forces 4.0.4 Class Documentation
|
00001 /****************************************************************************** 00002 ** Copyright (c) 2008 MAK Technologies, Inc. 00003 ** All rights reserved. 00004 ******************************************************************************/ 00005 /****************************************************************************** 00006 ** $RCSfile: DtDrawModel.h,v $ $Revision: 1.10 $ $State: Exp $ 00007 ******************************************************************************/ 00008 00012 00013 #pragma once 00014 00015 #include <vrvCore/vrvCore.h> 00016 #include <vrvCore/DtModel.h> 00017 00018 //class DtVector; 00019 #include <matrix/vlVector.h> 00020 00021 namespace makVrv 00022 { 00027 class DT_DLL_VRVCORE DtDrawModel : public DtModel 00028 { 00029 public: 00031 DtDrawModel(DtDe& de, DtUniqueID id); 00032 00034 virtual ~DtDrawModel(); 00035 00038 virtual void drawLine( const DtVector& rgbColor, double lineWidth ) = 0; 00039 00040 00041 protected: 00042 }; 00043 } 00044 00045