1 /***************************************************************************
2 
3     file                 : elevation.h
4     created              : Mon May 20 23:11:14 CEST 2002
5     copyright            : (C) 2001 by Eric Espi�
6     email                : Eric.Espie@torcs.org
7     version              : $Id: elevation.h,v 1.3 2002/09/06 19:17:20 torcs Exp $
8 
9  ***************************************************************************/
10 
11 /***************************************************************************
12  *                                                                         *
13  *   This program is free software; you can redistribute it and/or modify  *
14  *   it under the terms of the GNU General Public License as published by  *
15  *   the Free Software Foundation; either version 2 of the License, or     *
16  *   (at your option) any later version.                                   *
17  *                                                                         *
18  ***************************************************************************/
19 
20 /** @file
21 
22     @author	<a href=mailto:torcs@free.fr>Eric Espie</a>
23     @version	$Id: elevation.h,v 1.3 2002/09/06 19:17:20 torcs Exp $
24 */
25 
26 #ifndef _ELEVATION_H_
27 #define _ELEVATION_H_
28 
29 extern void LoadElevation(tTrack *track, void *TrackHandle, char *imgFile);
30 extern tdble GetElevation(tdble x, tdble y, tdble z);
31 extern void SaveElevation(tTrack *track, void *TrackHandle, char *imgFile, char *meshFile, int disp);
32 
33 
34 #endif /* _ELEVATION_H_ */
35 
36 
37 
38