Calculate the point (x, y) on a parabola given x or y and the coefficients [a, b, c] of the parabola.
Arguments
| Name | Type | Description | Required |
|---|---|---|---|
coefficients | [number; 3] | The coefficients [a, b, c] of the parabolic equation y = ax^2 + bx + c. | 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.