Skip to content

Commit 46b0bfb

Browse files
committed
project done
1 parent e9924e8 commit 46b0bfb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Scenes/FrameDebug.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ bool gCameraZooming = false;
1616
bool gCameraPanning = false;
1717
bool gAnimating = false;
1818
bool gSingleStep = false;
19-
bool gShowGrid = false;
19+
bool gShowGrid = true;
2020
bool gShowCenterAxes = false;
2121
bool gSaveFrame = false;
2222

@@ -195,7 +195,7 @@ auto main(int argc, char **argv) -> int {
195195
// Set the mesh
196196
Mat<Real> v(5, 3);
197197
for (int ii = 0; ii < v.rows(); ++ii) {
198-
v.row(ii) = Vec3<Real>(ii, (ii * ii) * 0.25, 0);
198+
v.row(ii) = Vec3<Real>(ii, 1, 0);
199199
}
200200

201201
gMesh = std::make_unique<StrandMesh>(v);

0 commit comments

Comments
 (0)