Is it possible to get distance between paper point and path?
const point = new Point([100, 200]);
const path = new Path();
path.strokeColor = 'black';
path.add(new Point(30, 30));
path.add(new Point(100, 100));
Is it possible to get distance between paper point and path?
const point = new Point([100, 200]);
const path = new Path();
path.strokeColor = 'black';
path.add(new Point(30, 30));
path.add(new Point(100, 100));
Share
Improve this question
edited Nov 24, 2017 at 20:21
daniele3004
14k13 gold badges76 silver badges78 bronze badges
asked Nov 23, 2017 at 10:03
Ewelina RybczyńskaEwelina Rybczyńska
312 bronze badges
1 Answer
Reset to default 10point.getDistance(path.getNearestPoint(point))
will get you the distance between the point in question and the nearest point to it on the path.