Example #1
0
        public object Clone()
        {
            GroundTruth obj = new GroundTruth();

            obj.fTime = this.fTime;
            obj.p3Loc = new Vector3(this.p3Loc);
            obj.p3Ori = new Vector3(this.p3Ori);
            return(obj);
        }
Example #2
0
 public GroundTruth(GroundTruth t)
 {
     if (t == null)
     {
         return;
     }
     this.fTime = t.fTime;
     this.p3Loc = new Vector3(t.p3Loc);
     this.p3Ori = new Vector3(t.p3Ori);
 }