admin管理员组

文章数量:1023764

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
Add a ment  | 

1 Answer 1

Reset to default 10

point.getDistance(path.getNearestPoint(point)) will get you the distance between the point in question and the nearest point to it on the path.

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
Add a ment  | 

1 Answer 1

Reset to default 10

point.getDistance(path.getNearestPoint(point)) will get you the distance between the point in question and the nearest point to it on the path.

本文标签: javascriptPaperjs distance between point and pathStack Overflow