Midpoint formula
Given two points (x1, y1) and (x2, y2), the midpoint is found as the average distance between the 2 points:
((x1 + x2)/2, (y1 + y2)/2)
Given two points (x1, y1) and (x2, y2), the midpoint is found as the average distance between the 2 points:
- x value is: (x1 + x2)/2
- y value is: (y1 + y2)/2
((x1 + x2)/2, (y1 + y2)/2)