< Summary

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
LinearExtrapolator(...)0%110100%
Predict(...)0%110100%

File(s)

/github/workspace/Assets/Scripts/Algorithms/Prediction/LinearExtrapolator.cs

#LineLine coverage
 1using System.Linq;
 2using UnityEngine;
 3
 4// The linear extrapolator class predicts the trajectory of an agent by linearly extrapolating its
 5// current position and velocity.
 6public class LinearExtrapolator : IPredictor {
 247  public LinearExtrapolator(in Agent agent) : base(agent) {}
 8
 9  // Predict the state at the given time.
 1810  public override PredictorState Predict(float time) {
 1811    Vector3 position = _state.Position + _state.Velocity * time;
 1812    return new PredictorState(position, _state.Velocity, _state.Acceleration);
 1813  }
 14}