Skip to content

Commit

Permalink
Update materials database path
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiashienzsch committed Jul 3, 2024
1 parent 1366d3e commit d5e93b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/ra/acoustic/WaveEquation2D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ auto WaveEquation2D::operator()(Callback const& callback) const -> void
auto uBuf = stdex::mdarray<double, stdex::dextents<std::size_t, 2>>{Nx, Ny};
auto uPrevBuf = stdex::mdarray<double, stdex::dextents<std::size_t, 2>>{Nx, Ny};
auto uNextBuf = stdex::mdarray<double, stdex::dextents<std::size_t, 2>>{Nx, Ny};
auto Kib = stdex::mdarray<std::uint8_t, stdex::dextents<std::size_t, 2>>{Nx, Ny};

auto u = uBuf.to_mdspan();
auto uPrev = uPrevBuf.to_mdspan();
Expand Down
2 changes: 1 addition & 1 deletion tool/RaumAkustik/editor/MaterialEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ constexpr auto Bands = std::array<char const*, 22>{
} // namespace

MaterialEditor::MaterialEditor()
: _materials{loadMaterials(juce::File("/Users/tobante/Developer/neo-sonar/neo-acoustic/material.json"))}
: _materials{loadMaterials(juce::File("/Users/tobante/Developer/tobanteAudio/RaumAkustik/data/material.json"))}
, _sortedMaterials{_materials}
{
_table.getHeader().addColumn("Material", NameColumnIndex, 150, 150);
Expand Down

0 comments on commit d5e93b7

Please sign in to comment.