Exemple #1
0
 public void AddTrajectoryWithName(Trajectory trajectory, string name)
 {
     this.vocabulary.AddTrajectoryWithName(trajectory, name);
 }
Exemple #2
0
 public TrajectoryDescriptor(Trajectory trajectory, Vector3[] tokens, Levenshtein.Alphabet <int> alphabet)
     : this(GetTrajectoryDescriptor(trajectory, tokens, FINEST_LEVEL_DESCRIPTOR_RESOLUTION), alphabet)
 {
 }
Exemple #3
0
 public TraceCreator(Tracer tracer)
 {
     this.onDisposed += tracer.TrajectoryCreationHandler;
     this.trajectory  = new Trajectory(/* TODO: Consider making default segment length variable. */);
 }