소스 검색

space -> tab indentation

zz85 13 년 전
부모
커밋
99ac6131e0
1개의 변경된 파일140개의 추가작업 그리고 140개의 파일을 삭제
  1. 140 140
      src/extras/geometries/ParametricGeometries.js

+ 140 - 140
src/extras/geometries/ParametricGeometries.js

@@ -5,69 +5,69 @@
  */
 THREE.TubeGeometry2 = function(path, segments, radius, segmentsRadius, closed, debug) {
 
-    this.path = path;
-    this.segments = segments || 64;
-    this.radius = radius || 1;
-    this.segmentsRadius = segmentsRadius || 8;
-    this.closed = closed || false;
-    if (debug) this.debug = new THREE.Object3D();
+	this.path = path;
+	this.segments = segments || 64;
+	this.radius = radius || 1;
+	this.segmentsRadius = segmentsRadius || 8;
+	this.closed = closed || false;
+	if (debug) this.debug = new THREE.Object3D();
 
 
-    var scope = this,
+	var scope = this,
 
-        tangent, normal, binormal,
+		tangent, normal, binormal,
 
-        numpoints = this.segments + 1,
+		numpoints = this.segments + 1,
 
-        x, y, z, tx, ty, tz, u, v,
+		x, y, z, tx, ty, tz, u, v,
 
-        cx, cy, pos, pos2 = new THREE.Vector3(),
-        i, j, ip, jp, a, b, c, d, uva, uvb, uvc, uvd;
+		cx, cy, pos, pos2 = new THREE.Vector3(),
+		i, j, ip, jp, a, b, c, d, uva, uvb, uvc, uvd;
 
-    var frames = new THREE.TubeGeometry.FrenetFrames(path, segments, closed),
-        tangents = frames.tangents,
-        normals = frames.normals,
-        binormals = frames.binormals;
+	var frames = new THREE.TubeGeometry.FrenetFrames(path, segments, closed),
+		tangents = frames.tangents,
+		normals = frames.normals,
+		binormals = frames.binormals;
 
-        // proxy internals
-        this.tangents = tangents;
-        this.normals = normals;
-        this.binormals = binormals;
+		// proxy internals
+		this.tangents = tangents;
+		this.normals = normals;
+		this.binormals = binormals;
 
    
 
-    var ParametricTube = function(u, v) {
-        v *= 2 * pi;
-        
-        i = u * (numpoints - 1);
-        i = Math.floor(i);
+	var ParametricTube = function(u, v) {
+		v *= 2 * pi;
+		
+		i = u * (numpoints - 1);
+		i = Math.floor(i);
 
-        pos = path.getPointAt(u);
+		pos = path.getPointAt(u);
 
-        tangent = tangents[i];
-        normal = normals[i];
-        binormal = binormals[i];
+		tangent = tangents[i];
+		normal = normals[i];
+		binormal = binormals[i];
 
-        if (scope.debug) {
+		if (scope.debug) {
 
-            scope.debug.add(new THREE.ArrowHelper(tangent, pos, radius, 0x0000ff));
-            scope.debug.add(new THREE.ArrowHelper(normal, pos, radius, 0xff0000));
-            scope.debug.add(new THREE.ArrowHelper(binormal, pos, radius, 0x00ff00));
+			scope.debug.add(new THREE.ArrowHelper(tangent, pos, radius, 0x0000ff));
+			scope.debug.add(new THREE.ArrowHelper(normal, pos, radius, 0xff0000));
+			scope.debug.add(new THREE.ArrowHelper(binormal, pos, radius, 0x00ff00));
 
-        }
-        
-        cx = -scope.radius * Math.cos(v); // TODO: Hack: Negating it so it faces outside.
-        cy = scope.radius * Math.sin(v);
+		}
+		
+		cx = -scope.radius * Math.cos(v); // TODO: Hack: Negating it so it faces outside.
+		cy = scope.radius * Math.sin(v);
 
-        pos2.copy(pos);
-        pos2.x += cx * normal.x + cy * binormal.x;
-        pos2.y += cx * normal.y + cy * binormal.y;
-        pos2.z += cx * normal.z + cy * binormal.z;
+		pos2.copy(pos);
+		pos2.x += cx * normal.x + cy * binormal.x;
+		pos2.y += cx * normal.y + cy * binormal.y;
+		pos2.z += cx * normal.z + cy * binormal.z;
 
-        return pos2.clone();
-    };
+		return pos2.clone();
+	};
 
-    THREE.ParametricGeometry.call(this, ParametricTube, segments, segmentsRadius);
+	THREE.ParametricGeometry.call(this, ParametricTube, segments, segmentsRadius);
 
 };
 
@@ -89,31 +89,31 @@ THREE.TubeGeometry2.prototype.constructor = THREE.TubeGeometry2;
 	this.heightScale = heightScale || 1;
    
    
-    var TorusKnotCurve = THREE.Curve.create(
+	var TorusKnotCurve = THREE.Curve.create(
 
-        function() {
-        },
+		function() {
+		},
 
-        function(t) {
+		function(t) {
 
-        	t *= Math.PI * 2;
+			t *= Math.PI * 2;
 
-            var r = 0.5;
-          
-        	var tx = (1 + r * Math.cos(q * t)) * Math.cos(p * t),
-        		ty = (1 + r * Math.cos(q * t)) * Math.sin(p * t),
-        		tz = r * Math.sin(q * t);
+			var r = 0.5;
+		  
+			var tx = (1 + r * Math.cos(q * t)) * Math.cos(p * t),
+				ty = (1 + r * Math.cos(q * t)) * Math.sin(p * t),
+				tz = r * Math.sin(q * t);
 
-        	return new THREE.Vector3(tx, ty * heightScale, tz).multiplyScalar(radius);
+			return new THREE.Vector3(tx, ty * heightScale, tz).multiplyScalar(radius);
 
-        }
+		}
 
-    );
-    var segments = segmentsR;
-    var radiusSegments = segmentsT;
-    var extrudePath = new TorusKnotCurve();
+	);
+	var segments = segmentsR;
+	var radiusSegments = segmentsT;
+	var extrudePath = new TorusKnotCurve();
 
-     THREE.TubeGeometry2.call( this, extrudePath, segments, tube, radiusSegments, true, false );
+	 THREE.TubeGeometry2.call( this, extrudePath, segments, tube, radiusSegments, true, false );
 
 
 };
@@ -124,85 +124,85 @@ THREE.TorusKnotGeometry2.prototype.constructor = THREE.TorusKnotGeometry2;
  var sin = Math.sin, cos = Math.cos, pi = Math.PI;
 
 THREE.ParametricGeometries = {
-    klein: function (v, u) {
-        u *= pi;
-        v *= 2 * pi;
-
-        u = u * 2;
-        var x, y, z;
-        if (u < pi) {
-            x = 3 * cos(u) * (1 + sin(u)) + (2 * (1 - cos(u) / 2)) * cos(u) * cos(v);
-            z = -8 * sin(u) - 2 * (1 - cos(u) / 2) * sin(u) * cos(v);
-        } else {
-            x = 3 * cos(u) * (1 + sin(u)) + (2 * (1 - cos(u) / 2)) * cos(v + pi);
-            z = -8 * sin(u);
-        }
-      
-        y = -2 * (1 - cos(u) / 2) * sin(v);
-        
-        return new THREE.Vector3(x, y, z);
-    },
-
-    plane: function (width, height) {
-        
-        return function(u, v) {
-            var x = u * width;
-            var y = 0; 
-            var z = v * height;
-
-            console.log(x, y, z);
-
-            return new THREE.Vector3(x, y, z);
-        };
-    },
-
-    mobius: function(u, t) {
-
-        // flat mobius strip
-        // http://www.wolframalpha.com/input/?i=M%C3%B6bius+strip+parametric+equations&lk=1&a=ClashPrefs_*Surface.MoebiusStrip.SurfaceProperty.ParametricEquations-
-        // u = u - 0.5;
-        // var v = 2 * pi * t;
-
-        // var x, y, z;
-
-        // var a = 2;
-        // x = cos(v) * (a + u * cos(v/2));
-        // y = sin(v) * (a + u * cos(v/2));
-        // z = u * sin(v/2);
-        // return new THREE.Vector3(x, y, z);
-
-        // volumetric mobius strip
-        u *= pi;
-        t *= 2 * pi;
-
-        u = u * 2
-        var phi = u / 2
-        var major = 2.25, a = 0.125, b = 0.65;
-        var x, y, z;
-        x = a * cos(t) * cos(phi) - b * sin(t) * sin(phi);
-        z = a * cos(t) * sin(phi) + b * sin(t) * cos(phi);
-        y = (major + x) * sin(u);
-        x = (major + x) * cos(u);
-        return new THREE.Vector3(x, y, z);
-    }
+	klein: function (v, u) {
+		u *= pi;
+		v *= 2 * pi;
+
+		u = u * 2;
+		var x, y, z;
+		if (u < pi) {
+			x = 3 * cos(u) * (1 + sin(u)) + (2 * (1 - cos(u) / 2)) * cos(u) * cos(v);
+			z = -8 * sin(u) - 2 * (1 - cos(u) / 2) * sin(u) * cos(v);
+		} else {
+			x = 3 * cos(u) * (1 + sin(u)) + (2 * (1 - cos(u) / 2)) * cos(v + pi);
+			z = -8 * sin(u);
+		}
+	  
+		y = -2 * (1 - cos(u) / 2) * sin(v);
+		
+		return new THREE.Vector3(x, y, z);
+	},
+
+	plane: function (width, height) {
+		
+		return function(u, v) {
+			var x = u * width;
+			var y = 0; 
+			var z = v * height;
+
+			console.log(x, y, z);
+
+			return new THREE.Vector3(x, y, z);
+		};
+	},
+
+	mobius: function(u, t) {
+
+		// flat mobius strip
+		// http://www.wolframalpha.com/input/?i=M%C3%B6bius+strip+parametric+equations&lk=1&a=ClashPrefs_*Surface.MoebiusStrip.SurfaceProperty.ParametricEquations-
+		// u = u - 0.5;
+		// var v = 2 * pi * t;
+
+		// var x, y, z;
+
+		// var a = 2;
+		// x = cos(v) * (a + u * cos(v/2));
+		// y = sin(v) * (a + u * cos(v/2));
+		// z = u * sin(v/2);
+		// return new THREE.Vector3(x, y, z);
+
+		// volumetric mobius strip
+		u *= pi;
+		t *= 2 * pi;
+
+		u = u * 2
+		var phi = u / 2
+		var major = 2.25, a = 0.125, b = 0.65;
+		var x, y, z;
+		x = a * cos(t) * cos(phi) - b * sin(t) * sin(phi);
+		z = a * cos(t) * sin(phi) + b * sin(t) * cos(phi);
+		y = (major + x) * sin(u);
+		x = (major + x) * cos(u);
+		return new THREE.Vector3(x, y, z);
+	}
 
 };
 
 
 THREE.SphereGeometry2 = function(size, x, y) {
 
-    function sphere(u, v) {
-        u *= pi;
-        v *= 2 * pi;
-        
-        var x = sin(u) * cos(v);
-        var y = cos(u);
-        var z = -sin(u) * sin(v);
+	function sphere(u, v) {
+		u *= pi;
+		v *= 2 * pi;
+		
+		var x = sin(u) * cos(v);
+		var y = cos(u);
+		var z = -sin(u) * sin(v);
 
-        return new THREE.Vector3(x, y, z).multiplyScalar(size);
-    }
+		return new THREE.Vector3(x, y, z).multiplyScalar(size);
+	}
   
-    THREE.ParametricGeometry.call(this, sphere, y, x);
+	THREE.ParametricGeometry.call(this, sphere, y, x);
 
 };
 
@@ -212,16 +212,16 @@ THREE.SphereGeometry2.prototype.constructor = THREE.SphereGeometry2;
 
 THREE.PlaneGeometry2 = function(width, depth, segmentsWidth, segmentsDepth) {
 
-    function plane(u, v) {
-        
-        var x = u * width;
-        var y = 0; 
-        var z = v * depth;
+	function plane(u, v) {
+		
+		var x = u * width;
+		var y = 0; 
+		var z = v * depth;
 
-        return new THREE.Vector3(x, y, z);
-    }
+		return new THREE.Vector3(x, y, z);
+	}
   
-    THREE.ParametricGeometry.call(this, plane, segmentsWidth, segmentsDepth);
+	THREE.ParametricGeometry.call(this, plane, segmentsWidth, segmentsDepth);
 
 };