Interface ViewFactory<T>

interface ViewFactory<T> {
    createView(viewBox: Group, containerId: string): View<T>;
}

Type Parameters

  • T

Implemented by

Methods

Methods

  • Parameters

    • viewBox: Group

      The topmost group that contains the scene group.

    • containerId: string

      The HTML id property of the element that contains the view.

    Returns View<T>