source: other-projects/playing-in-the-street/summer-2013/trunk/Playing-in-the-Street-WPF/Content/Web/mrdoob-three.js-4862f5f/src/core/Face4.js@ 28897

Last change on this file since 28897 was 28897, checked in by davidb, 10 years ago

GUI front-end to server base plus web page content

File size: 277 bytes
Line 
1/**
2 * @author mrdoob / http://mrdoob.com/
3 */
4
5THREE.Face4 = function ( a, b, c, d, normal, color, materialIndex ) {
6
7 console.warn( 'THREE.Face4 has been removed. A THREE.Face3 will be created instead.')
8
9 return new THREE.Face3( a, b, c, normal, color, materialIndex );
10
11};
Note: See TracBrowser for help on using the repository browser.