Calculate the point (x, y) on an ellipse given x or y and the center and major/minor radii of the ellipse.
Arguments
| Name | Type | Description | Required |
|---|---|---|---|
majorRadius | number | The major radius, a, of the elliptic equation x^2 / a ^ 2 + y^2 / b^2 = 1. | Yes |
minorRadius | number | The minor radius, b, of the hyperbolic equation x^2 / a ^ 2 + y^2 / b^2 = 1. | Yes |
x | number(Length) | The x value. Calculates y and returns (x, y). Incompatible with y. | No |
y | number(Length) | The y value. Calculates x and returns (x, y). Incompatible with x. | No |
Returns
Point2d - A point in two dimensional space.