/** * The normal gets assigned when the face calculates its normal * @param position * @param boneWeights GameLib.D3.BoneWeight[] * @constructor */ GameLib.D3.Vertex = function( position, boneWeights ) { this.position = position; this.boneWeights = boneWeights; };