Skip to content

Commit 11f8ccd

Browse files
committed
Updated builds.
1 parent 5cafb12 commit 11f8ccd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build/three.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5784,7 +5784,7 @@ THREE.Ray.prototype = {
57845784
this.direction.copy( v ).sub( this.origin ).normalize();
57855785

57865786
return this;
5787-
5787+
57885788
},
57895789

57905790
recast: function () {
@@ -5855,7 +5855,7 @@ THREE.Ray.prototype = {
58555855

58565856
return function ( v0, v1, optionalPointOnRay, optionalPointOnSegment ) {
58575857

5858-
// from http://www.geometrictools.com/LibMathematics/Distance/Wm5DistRay3Segment3.cpp
5858+
// from http://www.geometrictools.com/GTEngine/Include/Mathematics/GteDistRaySegment.h
58595859
// It returns the min distance between the ray and the segment
58605860
// defined by v0 and v1
58615861
// It can also set two optional targets :
@@ -6176,7 +6176,7 @@ THREE.Ray.prototype = {
61766176

61776177
return function ( a, b, c, backfaceCulling, optionalTarget ) {
61786178

6179-
// from http://www.geometrictools.com/LibMathematics/Intersection/Wm5IntrRay3Triangle3.cpp
6179+
// from http://www.geometrictools.com/GTEngine/Include/Mathematics/GteIntrRay3Triangle3.h
61806180

61816181
edge1.subVectors( b, a );
61826182
edge2.subVectors( c, a );
@@ -28670,7 +28670,7 @@ THREE.WebGLCapabilities = function ( gl, extensions, parameters ) {
2867028670

2867128671
this.getMaxPrecision = getMaxPrecision;
2867228672

28673-
this.precision = parameters.precision !== undefined ? parameters.precision : 'highp',
28673+
this.precision = parameters.precision !== undefined ? parameters.precision : 'highp';
2867428674
this.logarithmicDepthBuffer = parameters.logarithmicDepthBuffer !== undefined ? parameters.logarithmicDepthBuffer : false;
2867528675

2867628676
this.maxTextures = gl.getParameter( gl.MAX_TEXTURE_IMAGE_UNITS );

0 commit comments

Comments
 (0)