public struct Parabola
Constructor that defines parabola by the focus and the directrix that is Parallel to X-axis!
public init(focus: Site, directrixY: Double)
- focus: - focus: Parabola focus
- directrixY: - directrixY: Directix Y
var focus: Site
var directrixY: Double
Converts parabola to standart form (ax^2 + by * c)
var standardForm: (a: Double, b: Double, c: Double)
Resolves parabola equation against given X
public func resolve(x: Double) -> Double
- x: - x: given x
Quadrativ Bezier representation of the Parabola clipped by X
public func toQuadBezier(minX: Double, maxX: Double) -> (start: Site, cp: Site, end: Site)
- minX: - minX: Min X clippling point
- maxX: - maxX: Max X clippling point
X coordinate of the intersection with other Parabola (if present)
public func intersectionX(_ parabola: Parabola) -> Double?
- parabola: - parabola: other parabola