Defines a static Units utility for unit conversion between meters and engine units. It provides two public constants: MetersToUnits and UnitsToMeters for converting meters to s&box inches and back.
namespace FieldGuide.VehiclePhysics;
/// <summary>
/// All vehicle math is done in SI units (meters, kg, N); convert only at the engine boundary.
/// s&box uses Source-style inch units.
/// </summary>
public static class Units
{
public const float MetersToUnits = 39.37f;
public const float UnitsToMeters = 1f / MetersToUnits;
}