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

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]);
}