< Summary

Class:PredictorState
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Algorithms/Prediction/Predictor.cs
Covered lines:13
Uncovered lines:1
Coverable lines:14
Total lines:37
Line coverage:92.8% (13 of 14)
Covered branches:0
Total branches:0
Covered methods:5
Total methods:6
Method coverage:83.3% (5 of 6)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
PredictorState()0%2100%
PredictorState(...)0%110100%
PredictorState(...)0%110100%

File(s)

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

#LineLine coverage
 1using UnityEngine;
 2
 3public class PredictorState {
 4  // Position.
 415  public Vector3 Position { get; }
 6
 7  // Velocity.
 398  public Vector3 Velocity { get; }
 9
 10  // Acceleration.
 1811  public Vector3 Acceleration { get; }
 12
 013  public PredictorState() {}
 1614  public PredictorState(Agent agent) {
 815    Position = agent.GetPosition();
 816    Velocity = agent.GetVelocity();
 817    Acceleration = agent.GetAcceleration();
 818  }
 3619  public PredictorState(Vector3 position, Vector3 velocity, Vector3 acceleration) {
 1820    Position = position;
 1821    Velocity = velocity;
 1822    Acceleration = acceleration;
 1823  }
 24}
 25
 26// The predictor class is an interface for predicting the trajectories of agents.
 27public abstract class IPredictor {
 28  // Agent state.
 29  protected PredictorState _state;
 30
 31  public IPredictor(in Agent agent) {
 32    _state = new PredictorState(agent);
 33  }
 34
 35  // Predict the state at the given time.
 36  public abstract PredictorState Predict(float time);
 37}