Source code for buffalo_wings.airfoil.internal.camber_curve
"""Public-facing open camber-curve base class."""
from __future__ import annotations
from .curve import Curve
[docs]
class CamberCurve(Curve):
"""
Public base class for airfoil camber-line curves.
Camber curves are open section curves that run from the leading-edge
reference point to the trailing-edge reference point in chordwise order.
Concrete implementations typically use the chordwise coordinate itself
as the native parameter.
"""