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

9 lines
200 B
TypeScript
Raw Normal View History

2024-11-19 21:42:03 -05:00
import { Coefs } from './coefs'
2024-11-24 22:37:53 -05:00
import { Variation } from './variation'
2024-11-19 21:42:03 -05:00
export interface Transform {
coefs: Coefs,
variations: [number, Variation][],
coefsPost: Coefs,
color: number
2024-11-19 21:42:03 -05:00
}