Skip to content

Manipulator

Manipulator

Constructors

new Manipulator()

new Manipulator(): Manipulator

Returns

Manipulator

Source

editor.ts:1713

Properties

controllers

controllers: Controller[]

Controllers of the manipulator

Source

editor.ts:1706


draggingController

draggingController: null | Controller

Dragging controller

Source

editor.ts:1711

Methods

draw()

draw(editor, shape): void

Draw controllers

Parameters

editor: Editor

shape: Shape

Returns

void

Source

editor.ts:1837


drawHovering()

drawHovering(editor, shape, e): void

Draw hovering for the shape

Parameters

editor: Editor

shape: Shape

e: CanvasPointerEvent

Returns

void

Source

editor.ts:1849


isDragging()

isDragging(): boolean

Returns one of controllers is dragging or not

Returns

boolean

Source

editor.ts:1721


keyDown()

keyDown(editor, shape, e): boolean

Handle keydown event

Parameters

editor: Editor

shape: Shape

e: KeyboardEvent

Returns

boolean

handled or not

Source

editor.ts:1804


keyUp()

keyUp(editor, shape, e): boolean

Handle keyup event

Parameters

editor: Editor

shape: Shape

e: KeyboardEvent

Returns

boolean

handled or not

Source

editor.ts:1821


mouseCursor()

mouseCursor(editor, shape, e): null | [string, number]

Returns mouse cursor for the manipulator

Parameters

editor: Editor

shape: Shape

e: CanvasPointerEvent

Returns

null | [string, number]

cursor object

Source

editor.ts:1738


mouseIn()

mouseIn(editor, shape, e): boolean

Returns true if mouse cursor is inside the shape or control points

Parameters

editor: Editor

shape: Shape

e: CanvasPointerEvent

Returns

boolean

Source

editor.ts:1728


pointerDown()

pointerDown(editor, shape, e): boolean

Handle pointer down event

Parameters

editor: Editor

shape: Shape

e: CanvasPointerEvent

Returns

boolean

handled or not

Source

editor.ts:1758


pointerMove()

pointerMove(editor, shape, e): boolean

Handle pointer move event

Parameters

editor: Editor

shape: Shape

e: CanvasPointerEvent

Returns

boolean

handled or not

Source

editor.ts:1776


pointerUp()

pointerUp(editor, shape, e): boolean

Handle pointer up event

Parameters

editor: Editor

shape: Shape

e: CanvasPointerEvent

Returns

boolean

handled or not

Source

editor.ts:1791