/***************************************************************************
vim:tabstop=4
fog.h - description
-------------------
begin : Sun Jul 1 2001
copyright : (C) 2001 by Francois Biot
email : fbiot@free.fr
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#ifndef _fog_
#define _fog_
class fog
{
public:
fog( float fstart,
float fend,
float density);
fog() : mfStart(0.5),mfEnd(0.6),mfDensity(1.0) {};
void Render() const;
private:
float mfStart;
float mfEnd;
float mfDensity;
};
#endif
| Generated by: saturn on FrancoisLinux on Sun Feb 3 20:01:44 2002, using kdoc 2.0a53. |