Example #1
0
 public void addData(NDILib.Position3d position3D0,NDILib.Position3d position3D1,NDILib.Position3d position3D2,string picName,double timespan)
 {
     allDataList[allDataLength] = new CollectData(picName,timespan,position3D0,position3D1,position3D2);
     allDataLength++;
 }
Example #2
0
 public CollectData(string picName,double timespan,NDILib.Position3d position0,NDILib.Position3d position1,NDILib.Position3d position2)
 {
     this.picName = picName;
     this.timespan = timespan;
     this.position0 = position0;
     this.position1 = position1;
     this.position2 = position2;
 }