blob: 8479fe466bbdfcf7e997e871979d96a9dec211f4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import type { Coord2D, Dimension2D } from './';
export interface DrawArgs {
center: Coord2D;
dimension: Dimension2D;
tint?: string;
opacity?: number;
rotation?: number;
}
|