/**
* WebGL Model Viewer - Face.js
* Copyright © Cyril Diagne 2010.
*
* @author kikko.fr
*/
 
Face = function(verticesId) { 
	
	this.vertices = verticesId;
	
	this.a = verticesId[0];
	this.b = verticesId[1];
	this.c = verticesId[2];
	
	this.mat = null;
};
