Provides histogram information about tracked world mesh faces in a given area. Returned by DeviceTracking.calculateWorldMeshHistogram().

interface TrackedMeshHistogramResult {
    avgNormal: vec3;
    histogram: number[];
    getTypeName(): string;
    isOfType(type: string): boolean;
    isSame(other: ScriptObject): boolean;
}

Hierarchy (view full)

Properties

avgNormal: vec3

Average normal direction, in world space, of the mesh faces.

histogram: number[]

Array of relative proportions for each classification, in the order described below. The values all add up to a total of 1.0.

The classification value order is: 0: None 1: Wall 2: Floor 3: Ceiling 4: Table 5: Seat 6: Window 7: Door

Methods

  • Returns true if the object matches or derives from the passed in type.

    Parameters

    • type: string

    Returns boolean

  • Returns true if this object is the same as other. Useful for checking if two references point to the same thing.

    Parameters

    Returns boolean