import { LineVector } from "../../core/property_mixins"; import { Line } from "../../core/visuals"; import { Arrayable, Rect } from "../../core/types"; import { SpatialIndex } from "../../core/util/spatial"; import { Context2d } from "../../core/util/canvas"; import { Glyph, GlyphView, GlyphData } from "./glyph"; import * as p from "../../core/properties"; export interface QuadraticData extends GlyphData { _x0: Arrayable; _y0: Arrayable; _x1: Arrayable; _y1: Arrayable; _cx: Arrayable; _cy: Arrayable; sx0: Arrayable; sy0: Arrayable; sx1: Arrayable; sy1: Arrayable; scx: Arrayable; scy: Arrayable; } export interface QuadraticView extends QuadraticData { } export declare class QuadraticView extends GlyphView { model: Quadratic; visuals: Quadratic.Visuals; protected _index_data(): SpatialIndex; protected _render(ctx: Context2d, indices: number[], { sx0, sy0, sx1, sy1, scx, scy }: QuadraticData): void; draw_legend_for_index(ctx: Context2d, bbox: Rect, index: number): void; scenterx(): number; scentery(): number; } export declare namespace Quadratic { type Attrs = p.AttrsOf; type Props = Glyph.Props & LineVector & { x0: p.CoordinateSpec; y0: p.CoordinateSpec; x1: p.CoordinateSpec; y1: p.CoordinateSpec; cx: p.CoordinateSpec; cy: p.CoordinateSpec; }; type Visuals = Glyph.Visuals & { line: Line; }; } export interface Quadratic extends Quadratic.Attrs { } export declare class Quadratic extends Glyph { properties: Quadratic.Props; constructor(attrs?: Partial); static initClass(): void; }