@polygonjs/polygonjs
Version:
node-based WebGL 3D engine https://polygonjs.com
31 lines (30 loc) • 1.09 kB
TypeScript
import { BaseSopOperation } from './_Base';
import { CoreGroup } from '../../../core/geometry/Group';
import { InputCloneMode } from '../../poly/InputCloneMode';
import { DefaultOperationParams } from '../../../core/operations/_Base';
declare enum OutOfRangeBehavior {
RESTART = "restart",
BOUNCE = "bounce"
}
export declare const OUT_OF_RANGE_BEHAVIOR: OutOfRangeBehavior[];
interface AudioNotesSopParams extends DefaultOperationParams {
class: number;
name: string;
toctave: boolean;
octaveName: string;
startOctave: number;
endOctave: number;
outOfRangeBehavior: number;
}
export declare class AudioNotesSopOperation extends BaseSopOperation {
static readonly DEFAULT_PARAMS: AudioNotesSopParams;
static readonly INPUT_CLONED_STATE = InputCloneMode.FROM_NODE;
static type(): Readonly<'AudioNotes'>;
cook(inputCoreGroups: CoreGroup[], params: AudioNotesSopParams): CoreGroup;
private _addAttribute;
private _addPointAttribute;
private _addObjectAttribute;
private _addCoreGroupAttribute;
private _values;
}
export {};