@bokeh/bokehjs
Version:
Interactive, novel data visualization
15 lines • 713 B
TypeScript
import type { Transform } from "./base";
import type { BaseLineVisuals } from "./base_line";
import type { Uint8Buffer } from "./buffer";
import type { ReglWrapper } from "./regl_wrap";
import { SingleLineGL } from "./single_line";
import type { StepView } from "../step";
export declare class StepGL extends SingleLineGL {
readonly glyph: StepView;
constructor(regl_wrapper: ReglWrapper, glyph: StepView);
draw(indices: number[], main_glyph: StepView, transform: Transform): void;
protected _get_show_buffer(_indices: number[], main_gl_glyph: StepGL): Uint8Buffer;
protected _get_visuals(): BaseLineVisuals;
protected _set_data_points(): Float32Array;
}
//# sourceMappingURL=step.d.ts.map