Fixed a typo in manifold plane wiggle.

This commit is contained in:
Stefan Paquay
2017-10-26 12:33:16 -04:00
parent a26ffc7ff7
commit 99a6c6edb4

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