Geometry.js 74 字节
Newer Older
M
Mr.doob 已提交
1
THREE.Geometry = function () {
2

M
Mr.doob 已提交
3 4 5 6
	this.vertices = [];
	this.faces = [];

}