You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
560 B

4 months ago
import { Continuous } from './continuous';
import { PowOptions, Transform } from '../types';
import { Base } from './base';
/**
* Pow
*
* linear scale, ,.
* y = x ^ k k
*/
export declare class Pow<O extends PowOptions = PowOptions> extends Continuous<O> {
protected getDefaultOptions(): O;
constructor(options?: PowOptions);
protected chooseTransforms(): Transform[];
clone(): Base<O>;
}