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