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

9 lines
201 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][],
coefsPost: Coefs,
color: number
}