< Summary

Class:LaunchAngleOutput
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Algorithms/Planning/LaunchAngleOutput.cs
Covered lines:0
Uncovered lines:2
Coverable lines:2
Total lines:8
Line coverage:0% (0 of 2)
Covered branches:0
Total branches:0
Covered methods:0
Total methods:4
Method coverage:0% (0 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.
 04  public float LaunchAngle { get; init; }
 5
 6  // Time to reach the target position in seconds.
 07  public float TimeToPosition { get; init; }
 8}