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

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

Constructs a new wheel. The WheelSlidingFriction, WheelBrake, WheelSuspension, and WheelDrivingMotor should be configured prior to using this wheel.
public Wheel ( WheelShape shape ) : System
shape WheelShape Shape of the wheel.
Результат System
        public Wheel(WheelShape shape)
        {
            slidingFriction = new WheelSlidingFriction(this);
            brake = new WheelBrake(this);
            suspension = new WheelSuspension(this);
            drivingMotor = new WheelDrivingMotor(this);
            Shape = shape;
        }

Same methods

Wheel::Wheel ( WheelShape shape, WheelSuspension suspension, WheelDrivingMotor motor, WheelBrake rollingFriction, WheelSlidingFriction slidingFriction ) : System