Source: Engine/Primitive/AxIntersectionInfo.js

/**
 * Represents information on intersection
 * Used when testing for intersection
 * @constructor
 */
function AxIntersectionInfo()
{
    this.point = new AxVertex();
    this.distance = 0.0;
    this.primitiveIndex = 0;
    this.hasIntersected = false;
}

Documentation generated by JSDoc 3.5.3 on Mon Feb 19 2018 20:39:26 GMT+0200 (FLE Standard Time)