UNPKG

@bplok20010/viewbox

Version:

a tool class for matrix transformation of views (rotate, scale, translate, skew, etc.)

11 lines (10 loc) 173 B
export interface IPoint { x: number; y: number; } export interface ISize { width: number; height: number; } export interface IRect extends IPoint, ISize { }