< Summary

Class:SensorOutput
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Sensors/SensorOutput.cs
Covered lines:3
Uncovered lines:0
Coverable lines:3
Total lines:12
Line coverage:100% (3 of 3)
Covered branches:0
Total branches:0
Covered methods:6
Total methods:6
Method coverage:100% (6 of 6)

File(s)

/github/workspace/Assets/Scripts/Sensors/SensorOutput.cs

#LineLine coverage
 1// The sensor output defines the output of a sensor. The transformations are relative to the sensing
 2// agent's state.
 3public struct SensorOutput {
 4  // Relative position transformation.
 125  public PositionTransformation Position { get; init; }
 6
 7  // Relative velocity transformation.
 98  public VelocityTransformation Velocity { get; init; }
 9
 10  // Relative acceleration transformation.
 811  public AccelerationTransformation Acceleration { get; init; }
 12}