Unverified Commit e2e21f06 authored by Steve Plimpton's avatar Steve Plimpton Committed by GitHub
Browse files

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

User manifold plane wiggle fix
parents 6abf68f6 99a6c6ed
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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]);
}