Represents an arc figure, a subclass of the Figure class.

Hierarchy (view full)

Constructors

  • Constructs a new Arc instance.

    Parameters

    • radius: number

      The radius of the arc.

    • from: number

      The starting angle of the arc in radians.

    • to: number

      The ending angle of the arc in radians.

    • Optional options: FigureOptions

      Optional configuration options for the arc.

    Returns Arc

Properties

animationInstances: AnimationInstance<Widget>[] = []
centerX: number
centerY: number
children: Widget[] = []

The child-widgets of the widget.

display: boolean = true
eventInstances: EventInstance<Widget>[] = []
fillPaint: Paint
from: number

The starting angle of the arc in radians.

hasSet: boolean = false
isImplemented: boolean = false
key: string = ...
last: Widget = ...
parent: Widget
plugins: WidgetPlugin[] = []
progress: number
radius: number

The radius of the arc.

rect: Float32Array
setups: {
    generator: Generator<number | {
        animation: Animation<any>;
        duration: number;
        mode: "async" | "sync";
        params: Record<string, any>;
        setAsync: (() => { animation: Animation<any>; mode: "async" | "sync"; duration: number; params: Record<string, any>; setAsync: () => ...; setSync: () => ...; });
        setSync: (() => { animation: Animation<any>; mode: "async" | "sync"; duration: number; params: Record<string, any>; setAsync: () => ...; setSync: () => ...; });
    }, void, unknown>;
    nextFrame: number;
}[] = []

Type declaration

  • generator: Generator<number | {
        animation: Animation<any>;
        duration: number;
        mode: "async" | "sync";
        params: Record<string, any>;
        setAsync: (() => { animation: Animation<any>; mode: "async" | "sync"; duration: number; params: Record<string, any>; setAsync: () => ...; setSync: () => ...; });
        setSync: (() => { animation: Animation<any>; mode: "async" | "sync"; duration: number; params: Record<string, any>; setAsync: () => ...; setSync: () => ...; });
    }, void, unknown>
  • nextFrame: number
strokePaint: Paint
to: number

The ending angle of the arc in radians.

updates: ((elapsed, widget) => void)[] = []

Type declaration

    • (elapsed, widget): void
    • Parameters

      Returns void

x: number
y: number

Accessors

Methods

  • Parameters

    • animation: Animation<any>
    • startAt: number
    • during: number
    • Optional params: Record<string, any>

    Returns this

  • Checks if a point is inside the arc.

    Parameters

    • x: number

      The x-coordinate of the point.

    • y: number

      The y-coordinate of the point.

    Returns boolean

    True if the point is inside the arc, otherwise false.

  • Updates the arc figure based on property changes.

    Parameters

    • ck: CanvasKit

      The CanvasKit instance.

    • Optional propertyChanged: string

      The name of the property that changed.

    Returns void

  • Called when the parameters is changed.

    Parameters

    • ck: CanvasKit

      The namespace of CanvasKit-WASM.

    • Optional propertyChanged: string

    Returns void

  • Set up a update function to call it when the widget is changed.

    Parameters

    • updateFunc: ((elapsed, widget) => void)

      The frame from having gone to current frame.

        • (elapsed, widget): void
        • Parameters

          Returns void

    Returns this

  • Update the object according to the style of the widget. Called when the style is changed.

    Parameters

    • canvas: Canvas

      The canvas object of CanvasKit-WASM.

    Returns void