( a, b )
| 49 | } |
| 50 | |
| 51 | static calcLineMidPoint( a, b ){ |
| 52 | const pt = {}; |
| 53 | pt.x = (a.x - b.x)/2 + b.x; |
| 54 | pt.y = (a.y - b.y)/2 + b.y; |
| 55 | |
| 56 | return pt; |
| 57 | } |
| 58 | |
| 59 | static calcPointAlongLine( a, b, delta ){ |
| 60 | const pt = {}; |
no outgoing calls
no test coverage detected