I can't figure out how to draw a parabola which is having a equation as y^2 = 4ax
So I have both end points i.e. P0, P2, however I can't figure out how to find control point to put in quadraticCurveTo()
function.
I can't figure out how to draw a parabola which is having a equation as y^2 = 4ax
So I have both end points i.e. P0, P2, however I can't figure out how to find control point to put in quadraticCurveTo()
function.
Function in Lua to get the control point of quadratic Bezier curve by given parabola parameters a, b, c and starting and end point (given by y1, y2 OR x1, x2):
function drawBezierParabola (a, b, c, y1, y2)
-- crop points:
local x1 = (-b + math.sqrt(b^2 - 4*a*(c-y1))) / (2*a)
local x2 = (-b - math.sqrt(b^2 - 4*a*(c-y2))) / (2*a)
--[[ or by given x1 and x2:
local y1 = a * x1^2 + b * x1 + c
local y2 = a * x2^2 + b * x2 + c
]]
-- derivatives:
local k1 = 2 * a * x1 + b
local k2 = 2 * a * x2 + b
-- bezier control point:
local xi = -b/(2*a) - (y2 - y1) / (k1 - k2)
local yi = k1 * (xi - x1) + y1
local bezier = love.math.newBezierCurve (x1, y1, xi, yi, x2, y2)
love.graphics.line (bezier:render())
end
To match a quadratic Bezier to this parabola formula and assuming origin is 0, you can use place the control point at
-y0
or-y1
from one of the end points.Example
First, lets rearrange the formula:
to:
so we can plot from bottom down.
In this case we can simply boil down everything and use the inverse of y and mid x as control point.
The general principle though, is to find the tangents of the endpoints. Then where the lines from those intersect the control-point should be placed. If you want the mathematical steps on how to find the intersection I would recommend taking a look at Erik Man's answer here (which happened to be posted today but breaks down the math in much more details).
So, if we plot it within the window of a canvas (black is parabola, red is quadratic curve):