(n: number)
| 565 | } |
| 566 | |
| 567 | public getLine(n: number): string{ |
| 568 | if(n < 0 || n >= this.height) |
| 569 | console.log("Error : trying to get a line out of the bounds of a drawing area."); |
| 570 | else |
| 571 | return this.area[n]; |
| 572 | } |
| 573 | |
| 574 | public getTags(): RenderTag[][]{ |
| 575 | return this.tags; |