Example #1
0
 public void PointingAngle(string id, double horizontal, double vertical, double speed = 1, PointingMode mode = PointingMode.RightHand)
 {
     publisher.PointingAngle(id, horizontal, vertical, speed, mode);
 }
Example #2
0
 public void Waving(string id, double horizontal, double vertical, double frequency, double amplitude, double duration, PointingMode mode = PointingMode.RightHand)
 {
     publisher.Waving(id, horizontal, vertical, frequency, amplitude, duration, mode);
 }
Example #3
0
 public Pointing(string id, string target, PointingMode mode, SyncPoint startTime, SyncPoint endTime) : base(id, startTime, endTime) {
     this.Target = target;
     this.Mode = mode;
 }
Example #4
0
 public void Pointing(string id, string target, double speed = 1, PointingMode mode = PointingMode.RightHand)
 {
     publisher.Pointing(id, target, speed, mode);
 }
Example #5
0
 //id, target, mode, start, end
 public Pointing(string id, double hAngle, double vAngle, PointingMode mode, SyncPoint startTime, SyncPoint endTime) : this(id, "h:" + hAngle.ToString(ifp) + ";v:" + vAngle.ToString(ifp), mode, startTime, endTime) { }
Example #6
0
 //id, target, mode, start
 public Pointing(string id, string target, PointingMode mode, SyncPoint startTime) : this(id, target, mode, startTime = SyncPoint.Null, SyncPoint.Null) { }
Example #7
0
 public Pointing(double hAngle, double vAngle, PointingMode mode, SyncPoint startTime) : this("Pointing" + Counter++, "h:" + hAngle.ToString(ifp) + ";v:" + vAngle.ToString(ifp), mode, startTime = SyncPoint.Null, SyncPoint.Null) { }
Example #8
0
 //target, mode, start
 public Pointing(string target, PointingMode mode, SyncPoint startTime) : this("Pointing" + Counter++, target, mode, startTime = SyncPoint.Null, SyncPoint.Null) { }
Example #9
0
 //target, mode, start, end
 public Pointing(string target, PointingMode mode, SyncPoint startTime, SyncPoint endTime) : this("Pointing" + Counter++, target, mode, startTime, endTime) { }