![]() |
torcs - 1.2.2 | ![]() |
00001 /*************************************************************************** 00002 00003 file : brake.h 00004 created : Sun Mar 19 00:05:34 CET 2000 00005 copyright : (C) 2000 by Eric Espie 00006 email : torcs@free.fr 00007 version : $Id: brake.h,v 1.1.1.1 2001/06/24 18:30:17 torcs Exp $ 00008 00009 ***************************************************************************/ 00010 00011 /*************************************************************************** 00012 * * 00013 * This program is free software; you can redistribute it and/or modify * 00014 * it under the terms of the GNU General Public License as published by * 00015 * the Free Software Foundation; either version 2 of the License, or * 00016 * (at your option) any later version. * 00017 * * 00018 ***************************************************************************/ 00019 00020 #ifndef _BRAKE_H_ 00021 #define _BRAKE_H_ 00022 00023 typedef struct 00024 { 00025 tdble pressure; 00026 tdble Tq; 00027 tdble coeff; 00028 tdble I; 00029 tdble radius; 00030 tdble temp; 00031 } tBrake; 00032 00033 typedef struct 00034 { 00035 tdble rep; /* front/rear repartition */ 00036 tdble coeff; 00037 } tBrakeSyst; 00038 00039 00040 00041 #endif /* _BRAKE_H_ */ 00042 00043 00044