Interface ShapeResult<T>

interface ShapeResult<T> {
    offset?: Vec3;
    orientation?: Quaternion;
    shape: T;
}

Type Parameters

Properties

offset?: Vec3
orientation?: Quaternion
shape: T