@jsfkit/types
    Preparing search index...

    Type Alias GraphicGroup

    Group shape container.

    Represents a collection of graphic objects grouped together as a single unit, allowing them to be transformed, moved, and manipulated collectively.

    type GraphicGroup = {
        content: Graphic[];
        id: string;
        name: string;
        type: "group";
        xfrm?: XfrmGroup;
    }
    Index

    Properties

    Properties

    content: Graphic[]

    Array of graphic objects contained within this group.

    id: string

    Unique identifier for this group.

    name: string

    Display name of the group.

    type: "group"

    Type discriminator for group shapes.

    xfrm?: XfrmGroup

    2D transformation applied to the group (position, rotation, scale).