mirror of
https://github.com/wahyd4/three.js.git
synced 2026-08-21 10:56:01 +10:00
Added THREE namespace Camera.x -> Camera.position.x Camera.target.x -> Camera.target.position.x ColorMaterial -> ColorFillMaterial FaceColorMaterial -> FaceColorFillMaterial Materials are now multipass (use array) Added ColorStrokeMaterial and FaceColorStrokeMaterial geometry.faces.a are now indexes instead of links
7 lines
74 B
JavaScript
Executable File
7 lines
74 B
JavaScript
Executable File
THREE.Geometry = function () {
|
|
|
|
this.vertices = [];
|
|
this.faces = [];
|
|
|
|
}
|