/** * Renders a given [Curve] provided to it. Simplifies the task of drawing curves and/or saving them as image files. * */ declare class CurveTexture extends Texture { /** * Renders a given [Curve] provided to it. Simplifies the task of drawing curves and/or saving them as image files. * */ new(): CurveTexture; static "new"(): CurveTexture /** The [code]curve[/code] rendered onto the texture. */ curve: Curve; /** The width of the texture. */ width: int; connect>(signal: T, method: SignalFunction): number; }