예제 #1
0
        /*************************************************************************************************************************/
        // SETTERS AND GETTERS

        public void set(Line line)
        {
            this.start = line.start;
            this.end = line.end;
            this.startNode = line.startNode;
            this.endNode = line.endNode;
            this.arrow = line.arrow;
            this.color.set(line.color);
            this.width = line.width;
            this.layer = line.layer;
        }
예제 #2
0
 public Line(Line line)
 {
     this.set(line);
 }