Interface IClashItem

Defines the information about the clash of two objects.

interface IClashItem {
    distance: number;
    first: string;
    second: string;
}

Properties

Properties

distance: number

The distance between objects.

first: string

Handle of the first object, including the assembly model index in the form "model_object".

second: string

Handle of the second object, including the assembly model index in the form "model_object".