@daign/2d-graphics
Version:
Two dimensional graphics library that implements the daign-2d-pipeline.
18 lines (17 loc) • 567 B
TypeScript
import { StyledGraphicNode } from '../styledGraphicNode';
import { ControlObject } from './controlObject';
import { IControlGuide } from './iControlGuide';
/**
* Control guide for drawing a frame around the active object on the control layer.
*/
export declare class SelectionFrame implements IControlGuide {
/**
* Constructor.
*/
constructor();
/**
* Create the shapes that make up the control guide.
* @param activeObject - The currently active control object.
*/
redraw(activeObject: ControlObject): StyledGraphicNode;
}