Browse Source

Properly renaming LineColorMaterial ⟶ LineBasicMaterial

Mr.doob 14 years ago
parent
commit
08ef7e0e6c
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/materials/LineBasicMaterial.js

+ 4 - 4
src/materials/LineBasicMaterial.js

@@ -3,21 +3,21 @@
  *
  *
  * params = {
  * params = {
  * 	color: new THREE.Color(),
  * 	color: new THREE.Color(),
- * 	line_width: [ 0 - 100 ]
+ * 	line_width: Number
  * }
  * }
  */
  */
 
 
-THREE.LineColorMaterial = function ( params ) {
+THREE.LineBasicMaterial = function ( params ) {
 
 
 	this.params = params;
 	this.params = params;
 
 
 };
 };
 
 
-THREE.LineColorMaterial.prototype = {
+THREE.LineBasicMaterial.prototype = {
 
 
 	toString: function () {
 	toString: function () {
 
 
-		return 'THREE.LineColorMaterial ( params: ' + this.params + ' )';
+		return 'THREE.LineBasicMaterial ( params: ' + this.params + ' )';
 
 
 	}
 	}