Home > Net >  According to the 2 points plane coordinates, how to calculate the coordinates of interpolation point
According to the 2 points plane coordinates, how to calculate the coordinates of interpolation point

Time:09-27

Known, for example, A, B two planar point coordinates, the two points connected into A straight line segment,
In this segment, according to the average length equal to 10, how to calculate the plane coordinates of the nine section points?

CodePudding user response:

Delta=(B - A)/10
P1=A + delta * 1
The p2=A + delta * 2
P3=A + delta * 3

CodePudding user response:

Yesterday he had solved,

CodePudding user response:

It is good to solve the
  •  Tags:  
  • C#
  • Related