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