1
vote
Visiting the points in a triangle in a random order..
Here's a solution for Triangle Point Picking.
What you have to do is choose two vectors (sides) of your t …
2
votes
How can you determine a point is between two other points on a line segment?
Using a more geometric approach, calculate the following distances:
ab = sqrt((a.x-b.x)**2 + (a.y-b.y)**2)
ac = sqrt((a.x-c.x)**2 + (a.y-c.y)**2)
bc = sqrt((b.x-c.x)**2 + (b.y-c.y)* …
