Click or drag to resize

UtilTimeToTravel Method

Time to travel distance given starting speed and acceleration, or null if travel not possible

Namespace:  Demo3D.Common
Assembly:  Demo3D.Common (in Demo3D.Common.dll) Version: 15.0.2.11458
Syntax
C#
public static double? TimeToTravel(
	double s,
	double u,
	double a
)

Parameters

s
Type: SystemDouble
Distance to Travel
u
Type: SystemDouble
Initial Speed
a
Type: SystemDouble
Acceleration

Return Value

Type: NullableDouble
Time to travel, or null if travel not possible
See Also