Interface IMarker3D

interface IMarker3D {
    action: number;
    color: IColorRGBA;
    colors: IColorRGBA[];
    frame_id: string;
    frame_locked: boolean;
    id: number;
    lifetime: number;
    mesh_resource: string;
    mesh_use_embedded_materials: boolean;
    ns: string;
    points: IVector3[];
    pose: {
        orientation: IQuaternion;
        position: IVector3;
    };
    scale: IVector3;
    text: string;
    type: number;
    world_to_local?: {
        orientation: IQuaternion;
        position: IVector3;
    };
}

Properties

action: number
color: IColorRGBA
colors: IColorRGBA[]
frame_id: string
frame_locked: boolean
id: number
lifetime: number
mesh_resource: string
mesh_use_embedded_materials: boolean
ns: string
points: IVector3[]
pose: {
    orientation: IQuaternion;
    position: IVector3;
}

Type declaration

scale: IVector3
text: string
type: number
world_to_local?: {
    orientation: IQuaternion;
    position: IVector3;
}

Type declaration

Generated using TypeDoc