diff options
author | sotech117 <michael_foiani@brown.edu> | 2024-05-10 09:14:45 -0400 |
---|---|---|
committer | sotech117 <michael_foiani@brown.edu> | 2024-05-10 13:18:13 -0400 |
commit | 9a9bb1a85de1eddb993efa635a59c693c37ec32f (patch) | |
tree | f3e809a4cb28369f60815ee3f28d314a6a06a9fe /src/ocean/ocean_alt.cpp | |
parent | ed9d441ea39800a6c239a60d4587768411cb5ff7 (diff) |
demo day
Diffstat (limited to 'src/ocean/ocean_alt.cpp')
-rw-r--r-- | src/ocean/ocean_alt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ocean/ocean_alt.cpp b/src/ocean/ocean_alt.cpp index 503cd4c..7825e37 100644 --- a/src/ocean/ocean_alt.cpp +++ b/src/ocean/ocean_alt.cpp @@ -438,7 +438,7 @@ std::vector<Eigen::Vector3f> ocean_alt::get_vertices(){ { for (int k = 0; k < N; k++) { - double c = Lx - 2 / (num_rows / Lx); + double c = Lx - 2 / (num_rows / Lx); // FIXME: when I am not perfect Eigen::Vector3f vertex = m_vertices[k] + Eigen::Vector3f(-i*(c), 0.0, (j)*(c)); vertices.push_back(vertex); |