@equinor/videx-wellog
Version:
Visualisation components for wellbore log data
13 lines (12 loc) • 321 B
TypeScript
import Plot from './plot';
import { Scale } from '../common/interfaces';
import { DipPlotOptions } from './interfaces';
/**
* Dip plot
*/
export default class DipPlot extends Plot<DipPlotOptions> {
/**
* Renders dip plot to canvas context
*/
plot(ctx: CanvasRenderingContext2D, scale: Scale): void;
}