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:27:02 -05:00
|
|
|
coefsPost: Coefs,
|
|
|
|
color: number
|
2024-11-19 21:42:03 -05:00
|
|
|
}
|