Beispiel #1
0
            internal URScriptPostProcessor(RobotCellUR robotCell, Program program)
            {
                this.cell    = robotCell;
                this.robot   = cell.Robot as RobotUR;
                this.program = program;
                this.Code    = new List <List <List <string> > >();
                var groupCode = new List <List <string> >();

                groupCode.Add(Program());
                Code.Add(groupCode);
            }
Beispiel #2
0
            internal URScriptPostProcessor(RobotCellUR robotCell, Program program)
            {
                this.cell    = robotCell;
                this.robot   = cell.Robot as RobotUR;
                this.program = program;
                var groupCode = new List <List <string> > {
                    Program()
                };

                this.Code = new List <List <List <string> > > {
                    groupCode
                };
            }
Beispiel #3
0
 internal URScriptPostProcessor(RobotCellUR robotCell, Program program)
 {
     this.cell = robotCell;
     this.robot = cell.Robot as RobotUR;
     this.program = program;
     this.Code = new List<List<List<string>>>();
     var groupCode = new List<List<string>>();
     groupCode.Add(Program());
     Code.Add(groupCode);
 }