Free Electron
StratumDrawWire.h
Go to the documentation of this file.
1 /* Copyright (C) 2003-2021 Free Electron Organization
2  Any use of this software requires a license. If a valid license
3  was not distributed with this file, visit freeelectron.org. */
4 
5 /** @file */
6 
7 #ifndef __terrain_StratumDrawWire_h__
8 #define __terrain_StratumDrawWire_h__
9 namespace fe
10 {
11 namespace ext
12 {
13 
14 /**************************************************************************//**
15  @brief Draw a terrain using wireframe
16 
17  @ingroup terrain
18 *//***************************************************************************/
19 class FE_DL_EXPORT StratumDrawWire: virtual public StratumDrawPoly
20 {
21  public:
22  StratumDrawWire(void) {}
23 virtual ~StratumDrawWire(void) {}
24 
25  protected:
26 virtual void drawSurface(void);
27 };
28 
29 } /* namespace ext */
30 } /* namespace fe */
31 
32 #endif /* __terrain_StratumDrawWire_h__ */
kernel
Definition: namespace.dox:3
Draw a terrain using a faceted surface.
Definition: StratumDrawPoly.h:19
Draw a terrain using wireframe.
Definition: StratumDrawWire.h:19