returns a position on this line that's `distance` along it: specifically when `distance=0` then we're at the start of the line, when `alpha=0.5` then we are in the middle, when `distance=line.length()` we're at the end.
(double distance)
| 1370 | |
| 1371 | |
| 1372 | /** |
| 1373 | * how long is this line? |
| 1374 | */ |
| 1375 | public float length() { |
| 1376 | FLinesAndJavaShapes.Cursor c = cursor(); |
| 1377 | return c.lengthD(); |
| 1378 | } |
| 1379 |