BEPUphysics.Vehicle.Wheel.Wheel C# (CSharp) Метод

Wheel() публичный Метод

Constructs a new wheel.
public Wheel ( WheelShape shape, WheelSuspension suspension, WheelDrivingMotor motor, WheelBrake rollingFriction, WheelSlidingFriction slidingFriction ) : System
shape WheelShape Shape of the wheel.
suspension WheelSuspension Springy support of the vehicle.
motor WheelDrivingMotor Driving force for the wheel.
rollingFriction WheelBrake Friction force resisting the forward and backward motion of the wheel.
slidingFriction WheelSlidingFriction Friction force resisting the side to side motion of the wheel.
Результат System
        public Wheel(WheelShape shape, WheelSuspension suspension, WheelDrivingMotor motor, WheelBrake rollingFriction, WheelSlidingFriction slidingFriction)
        {
            Suspension = suspension;
            DrivingMotor = motor;
            Brake = rollingFriction;
            this.SlidingFriction = slidingFriction;
            Shape = shape;
        }

Same methods

Wheel::Wheel ( WheelShape shape ) : System