Callenge 6 - Draw conics - Printable Version +- Small Basic Forum (https://litdev.uk/mybb) +-- Forum: Small Basic (https://litdev.uk/mybb/forumdisplay.php?fid=1) +--- Forum: Challenges (https://litdev.uk/mybb/forumdisplay.php?fid=5) +--- Thread: Callenge 6 - Draw conics (/showthread.php?tid=128) Pages:
1
2
|
RE: Callenge 6 - Draw conics - litdev - 09-27-2024 JR, Because it is using the equation of a parabola y=a*x^2, not equation of a hyperbola An ellipse has (x/a)^2 + (y/b)^2 = 1 A circle is a special case of ellipse with a = b = r (x^2 + y^2 = r^2) A hyperbola has (x/a)^2 - (y/b)^2 = 1 (note the minus sign and is not the same as a parabola even if it sort of looks similar). |