构造函数

方法

  • 参数

    • dom: any

      The reference to the DOM element.

    • coordinateSpace: Sprite

      The coordinate space. It should not be a reference to Stage.

    • x: number

      The x coordinate relative to the coordinateSpace.

    • y: number

      The y coordinate relative to the coordinateSpace.

    • width: number

      The width of the area.

    • height: number

      The height of the area.

    返回 void

    Make a DOM element fit within a specific area of the stage.

    使DOM元素适应舞台内指定区域。

  • 参数

    • sprite: Sprite

      The Sprite object to calculate.

    返回 Rectangle

    The Rectangle object with the calculated values.

    Calculates the global coordinates and scaling values of the specified Sprite display object, and returns a Rectangle object containing the calculated X and Y coordinates as well as the scaleX and scaleY values.

    计算传入的显示对象 Sprite 在全局坐标系中的坐标和缩放值,返回一个 Rectangle 对象,存放计算出的坐标 X 值、Y 值、ScaleX 值和 ScaleY 值。

  • 参数

    • coordinateSpace: Sprite

      The coordinate space, must not be a Stage reference.

    • x: number

      The x coordinate relative to the coordinateSpace.

    • y: number

      The y coordinate relative to the coordinateSpace.

    返回 any

    An object containing the transformed x, y coordinates, and scale factor.

    Retrieves the transform of a specified area relative to the top-left corner of the window.

    获取指定区域内相对于窗口左上角的transform。