for a line that has many moveTo's, split this up into lots of lines, each with one moveTo() @return
()
| 2717 | if (this.nodes.get(i).getClass() == MoveTo.class) { |
| 2718 | d = new FLine(); |
| 2719 | d.attributes = this.attributes.duplicate(d); |
| 2720 | ff.add(d); |
| 2721 | } |
| 2722 | |
| 2723 | d.nodes.add(this.nodes.get(i).duplicate()); |
| 2724 | } |
| 2725 | return ff; |
| 2726 | } |
| 2727 | } |
no test coverage detected