/** * (To be filled) */ export declare class ScaleFactor { private readonly p; private internalValue; private internalReciprocalValue; /** * * @param p - p5ex instance. * @param { number } [value = 1] */ constructor(p: p5ex, value?: number); /** * The numeric value of the scale factor. */ value: number; /** * The reciprocal value of the scale factor. */ readonly reciprocalValue: number; /** * Calls scale(). */ applyScale(): void; /** * Calls scale() with the reciprocal value. */ cancel(): void; } import { default as p5ex } from '../p5exInterface';