Navigation
API > API/Runtime > API/Runtime/ChaosVehiclesCore
References
| Module | ChaosVehiclesCore |
| Header | /Engine/Source/Runtime/Experimental/ChaosVehicles/ChaosVehiclesCore/Public/SteeringUtility.h |
| Include | #include "SteeringUtility.h" |
Syntax
struct FSteeringUtility
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | AkermannSetup
(
float T, |
||
| void | CalcJointPositions
(
float T, |
||
| void | CalculateAkermannAngle
(
bool Flip, |
Static void CalculateAkermannAngle(float Input, float& OutSteerLeft, float& OutSteerRight , FVector2D& OutPtLeft = FVector2D(), FVector2D& OutPtRight = FVector2D()) float RestAngle; FVector2D PtRest; CalculateAkermannAngle(false, 0.0f, PtRest, RestAngle); CalculateAkermannAngle(true, Input, OutSteerLeft, OutPtLeft); CalculateAkermannAngle(false, Input, OutSteerRight, OutPtRight); OutSteerLeft -= RestAngle; OutSteerRight -= RestAngle; | |
| float | CalculateBetaDegrees
(
float TrackWidth, |
||
| bool | IntersectTwoCircles
(
float R1, |
T - Track width W - Wheelbase H - Distance form steering rod to center of axle R - Rod End Length S - Steering Rod Length (Half) Intersection of two axis aligned circles Radius R1, R2 with a separation distance between centers of D |