export function clone()

in src/shapes/shapes.ts [79:81]


    export function clone(rect: IRect): IRect {
        return (rect !== null) ? { left: rect.left, top: rect.top, width: rect.width, height: rect.height } : null;
    }