( pt )
| 330 | } |
| 331 | |
| 332 | snapToGrid( pt ){ |
| 333 | pt.x = Math.round(pt.x * 10) / 10; |
| 334 | pt.y = Math.round(pt.y * 10) / 10; |
| 335 | //return { x, y }; |
| 336 | } |
| 337 | |
| 338 | convertScreenToPath( x, y ){ |
| 339 | const xOrg = this.canvas.width * this.config.yAxis; |
no outgoing calls
no test coverage detected