Merge pull request #714 from Pakketeretet2/user-manifold-plane-wiggle-fix

User manifold plane wiggle fix
This commit is contained in:
Steve Plimpton 2017-11-13 08:59:40 -07:00 committed by GitHub
commit e2e21f0661
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -24,5 +24,5 @@ void manifold_plane_wiggle::n( const double *x, double *n )
double w = params[1];
n[2] = 1;
n[1] = 0.0;
n[0] = -a*w*cos(x[0]);
n[0] = -a*w*cos(w*x[0]);
}