Removed unused values in car.h

git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@6531 30fe4595-0a0c-4342-8851-515496e4dcbd

Former-commit-id: 12d46454160a7c1a9d5c201a38a4ba21534564be
Former-commit-id: 39f019bc8e821cc0332c5b048beab9cdba0180ba
This commit is contained in:
torcs-ng 2018-03-31 23:11:24 +00:00
parent 3224435573
commit 912f56f2eb

View file

@ -55,7 +55,6 @@ typedef struct
tdble tireWidth; /**< Tire width */
tdble brakeDiskRadius; /**< Brake disk radius */
tdble wheelRadius; /**< Overall wheel radius */
tdble idealTemperature; /**< Tire ideal temperature */
} tWheelSpec;
/* structure access short cuts */
#define _rimRadius(i) info.wheel[i].rimRadius /**< short cut to tWheelSpec#rimRadius */
@ -316,10 +315,6 @@ typedef struct {
tdble Fy;
tdble Fz;
tdble effectiveMu;
tdble currentPressure; /**< current tire pressure considering temperature */
tdble currentTemperature; /**< current temperature */
tdble currentWear; /**< [0..1], 1 means totally worn (tread thickness 0) */
tdble currentGraining; /**< [0..1], 1 means totally grained */
} tWheelState;
/* structure access */
#define _ride(i) priv.wheel[i].relPos.z