blob: 6561a01ed6f3bab57d462293cc20e33f966c2ee9 (
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;
}
|