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

13 lines
296 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
2016-12-02 13:00:56 +01:00
* @param boneWeights GameLib.D3.API.BoneWeight[]
2016-10-14 12:32:53 +02:00
* @constructor
*/
2016-11-21 16:08:39 +01:00
GameLib.D3.Vertex = function Vertex(
2016-10-14 12:32:53 +02:00
position,
boneWeights
) {
this.position = position;
this.boneWeights = boneWeights;
};