r3-legacy/src/game-lib-vertex.js

13 lines
285 B
JavaScript
Raw Normal View History

2016-10-14 12:32:53 +02:00
/**
* 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;
};