SimTelemetry.Tests.Aggregates.CarTestDrivetrain.CarTestDrivetrain C# (CSharp) Method

CarTestDrivetrain() public method

public CarTestDrivetrain ( float clutchSlipTorque, float clutchFriction, float upshiftTime, float downshiftTime, int gears, IEnumerable gearRatios, IEnumerable finalRatios, IEnumerable stockRatios, int stockFinal, DriveTrainSetup drive, float driveDistribution ) : System
clutchSlipTorque float
clutchFriction float
upshiftTime float
downshiftTime float
gears int
gearRatios IEnumerable
finalRatios IEnumerable
stockRatios IEnumerable
stockFinal int
drive DriveTrainSetup
driveDistribution float
return System
        public CarTestDrivetrain(float clutchSlipTorque, float clutchFriction, float upshiftTime, float downshiftTime, int gears, IEnumerable<float> gearRatios, IEnumerable<float> finalRatios, IEnumerable<int> stockRatios, int stockFinal, DriveTrainSetup drive, float driveDistribution)
            : base(clutchSlipTorque, clutchFriction, upshiftTime, downshiftTime, gears, gearRatios, finalRatios, stockRatios, stockFinal, drive, driveDistribution)
        {
        }
CarTestDrivetrain