You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

8 lines
204 B

export function midPoint(a, b, t) {
var ax = a[0];
var ay = a[1];
var bx = b[0];
var by = b[1];
return [ax + (bx - ax) * t, ay + (by - ay) * t];
}
//# sourceMappingURL=mid-point.js.map