Skip to content

Manipulator

Manipulator

Constructors

new Manipulator()

new Manipulator(): Manipulator

Returns

Manipulator

Source

editor.ts:1924

Properties

controllers

controllers: Controller[]

Controllers of the manipulator

Source

editor.ts:1917


draggingController

draggingController: null | Controller

Dragging controller

Source

editor.ts:1922

Methods

draw()

draw(editor, shape): void

Draw controllers

Parameters

editor: Editor

shape: Shape

Returns

void

Source

editor.ts:2058


drawHovering()

drawHovering(editor, shape, e, thickness): void

Draw hovering for the shape

Parameters

editor: Editor

shape: Shape

e: CanvasPointerEvent

thickness: number= 1.5

Returns

void

Source

editor.ts:2072


isDragging()

isDragging(): boolean

Returns one of controllers is dragging or not

Returns

boolean

Source

editor.ts:1932


keyDown()

keyDown(editor, shape, e): boolean

Handle keydown event

Parameters

editor: Editor

shape: Shape

e: KeyboardEvent

Returns

boolean

handled or not

Source

editor.ts:2025


keyUp()

keyUp(editor, shape, e): boolean

Handle keyup event

Parameters

editor: Editor

shape: Shape

e: KeyboardEvent

Returns

boolean

handled or not

Source

editor.ts:2042


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:1959


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:1939


mouseInHandles()

mouseInHandles(editor, shape, e): boolean

Returns true if mouse cursor is inside the controller’s handles

Parameters

editor: Editor

shape: Shape

e: CanvasPointerEvent

Returns

boolean

Source

editor.ts:1948


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:1979


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:1997


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:2012