1
0
Fork 0

Initial revision.

This commit is contained in:
curt 2000-08-23 22:07:30 +00:00
parent 3d4c9c9c25
commit 29910a6fe3

View file

@ -0,0 +1,83 @@
// texparams.hxx -- A simple class to hold texture application
// parameters for sections of the runway
//
// Written by Curtis Olson, started August 2000.
//
// Copyright (C) 2000 Curtis L. Olson - curt@flightgear.org
//
// 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.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
// $Id$
#ifndef _TEXPARAMS_HXX
#define _TEXPARAMS_HXX
#ifndef __cplusplus
# error This library requires C++
#endif
#include <simgear/compiler.h>
#include <simgear/math/fg_types.hxx>
#include <vector>
FG_USING_STD(vector);
class FGTexParams {
private:
Point3D center;
Point3D min;
Point3D max;
double angle;
public:
// Constructor and destructor
inline FGTexParams( void ) { }
inline FGTexParams( const Point3D &c, const Point3D &mn, const Point3D &mx,
const double a ) {
center = c;
min = mn;
max = mx;
angle = a;
}
inline ~FGTexParams( void ) { }
inline Point3D get_center() const { return center; }
inline void set_center( const Point3D &p ) { center = p; }
inline Point3D get_min() const { return min; }
inline void set_min( const Point3D &p ) { min = p; }
inline Point3D get_max() const { return max; }
inline void set_max( const Point3D &p ) { max = p; }
inline double get_angle() const { return angle; }
inline void set_angle( const double a ) { angle = a; }
};
typedef vector < FGTexParams > texparams_list;
typedef texparams_list::iterator texparams_list_iterator;
typedef texparams_list::const_iterator const_texparams_list_iterator;
#endif // _TEXPARAMS_HXX