Skip to content

Commit

Permalink
Add missing semicolon in RollerCoaster
Browse files Browse the repository at this point in the history
  • Loading branch information
Itee committed Nov 16, 2016
1 parent ec8bb4e commit 98da28a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/js/RollerCoaster.js
Original file line number Diff line number Diff line change
Expand Up @@ -265,19 +265,19 @@ var RollerCoasterLiftersGeometry = function ( curve, size ) {
var point1 = shape[ j ];
var point2 = shape[ ( j + 1 ) % jl ];

vector1.copy( point1 )
vector1.copy( point1 );
vector1.applyQuaternion( quaternion );
vector1.add( fromPoint );

vector2.copy( point2 )
vector2.copy( point2 );
vector2.applyQuaternion( quaternion );
vector2.add( fromPoint );

vector3.copy( point2 )
vector3.copy( point2 );
vector3.applyQuaternion( quaternion );
vector3.add( toPoint );

vector4.copy( point1 )
vector4.copy( point1 );
vector4.applyQuaternion( quaternion );
vector4.add( toPoint );

Expand Down

0 comments on commit 98da28a

Please sign in to comment.