public Inv_SRInfoLine()
 {
     name       = "Default Name";
     start      = new Inv_SR3D();
     end        = new Inv_SR3D();
     travelTime = 0f;
 }
Example #2
0
        //-------------------------------------------
        public Inv_SR3D copy()
        {
            Inv_SR3D output = new Inv_SR3D();

            output.name    = string.Copy(this.name);
            output.no      = this.no;
            output.coor[0] = this.coor[0];
            output.coor[1] = this.coor[1];
            output.coor[2] = this.coor[2];
            return(output);
        }