speice.io/blog/2024-11-15-playing-with-fire/src/transform.ts

10 lines
225 B
TypeScript
Raw Normal View History

2024-11-19 21:42:03 -05:00
import { Coefs } from './coefs'
import { Variation } from './variations'
export interface Transform {
coefs: Coefs,
variations: [number, Variation][],
2024-11-23 15:26:48 -05:00
enabled: boolean,
coefsPost?: Coefs,
color?: number
2024-11-19 21:42:03 -05:00
}