Skip to content

Commit

Permalink
fix style in surface example
Browse files Browse the repository at this point in the history
  • Loading branch information
9prady9 committed Dec 19, 2016
1 parent a23f095 commit 4aa16cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/cpu/surface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
using namespace std;

static const float XMIN = -32.0f;
static const float XMAX = 32.f;
static const float XMAX = 32.0f;
static const float YMIN = -32.0f;
static const float YMAX = 32.f;
static const float YMAX = 32.0f;

const float DX = 0.25;
const size_t XSIZE = (XMAX-XMIN)/DX;
Expand Down

0 comments on commit 4aa16cc

Please sign in to comment.