Source: Engine/Utilities/SmoothingGroups/AxSmoothingGroupsPrimitiveTypes.js

/**
 * Holds all the indices that derive from a given original vertex and all their smooth groups accumulated
 * @constructor
 */
function AxSmoothingGroupsVertexInfo()
{
    this.accumulatedSmoothingGroups = 0;
    this.indices = new AxList();
}

/**
 * Holds the smoothing groups of a face and the indices of its vertices
 * @constructor
 */
function AxSmoothingGroupsFace()
{
    this.smoothingGroups = 0;
    this.indices = AxList();
}

/**
 * Holds the smooth groups of a vetex
 * @constructor
 */
function AxSmoothingGroupsVertex()
{
    this.accumulatedSmoothingGroups = 0;
    this.index = 0;
}

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