/** * Creates a new vertex * @constructor */ function AxVertex() { this.position = new AxVector3(); this.normal = new AxVector3(); this.texCoords = new AxVector2(); }