< Summary

Class:LaunchAngleOutput
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Algorithms/Planning/LaunchAngleOutput.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:8
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0
Covered methods:4
Total methods:4
Method coverage:100% (4 of 4)

File(s)

/github/workspace/Assets/Scripts/Algorithms/Planning/LaunchAngleOutput.cs

#LineLine coverage
 1// Launch angle output.
 2public struct LaunchAngleOutput {
 3  // Launch angle in degrees.
 974  public float LaunchAngle { get; init; }
 5
 6  // Time to reach the target position in seconds.
 1057  public float TimeToPosition { get; init; }
 8}