@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
14 lines (13 loc) • 405 B
TypeScript
import { PointF } from "@aurigma/design-atoms-model/Math";
export declare class Rubberband {
private _left;
private _top;
private _right;
private _bottom;
constructor(_left: number, _top: number, _right: number, _bottom: number);
get left(): number;
get top(): number;
get right(): number;
get bottom(): number;
translate(shift: PointF): Rubberband;
}