function intersect(ellipseProps, lineProps) {
let { cx, cy, rx, ry } = ellipseProps;
let { x1, x2, y1, y2 } = lineProps;
const ellipse = utils.ShapeInfo.ellipse([cx, cy], rx, ry);
const line = utils.ShapeInfo.line([x1, y1], [x2, y2]);
const intersections = utils.Intersection.intersect(ellipse, line);
return intersections.points[0];
}