示例#1
0
 /// <summary>
 /// Projects the acceleration vector onto a difference vector, returning the acceleration component in that
 /// vector's direction.
 /// </summary>
 public Acceleration ProjectedOn(Difference3 vector) => projectedOn(vector.NumericValue.NormalizedSafe());
示例#2
0
 /// <summary>
 /// Projects the velocity vector onto a difference vector, returning the speed component in that vector's direction.
 /// </summary>
 public Speed ProjectedOn(Difference3 vector) => projectedOn(vector.NumericValue.NormalizedSafe());