Skip to content
Snippets Groups Projects

Implement model of growing roughness (#969)

Merged Mikhail Svechnikov requested to merge m.i969a into main
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -25,7 +25,7 @@ using std::numbers::pi;
std::string Py::Fmt::printImportedSymbols(const std::string& code)
{
std::vector<std::string> to_declare;
for (const std::string key : {"angstrom", "deg", "nm", "nm2", "micrometer"})
for (const std::string key : {"angstrom", "deg", "nm", "nm2", "nm3", "micrometer"})
if (code.find("*" + key) != std::string::npos)
to_declare.push_back(key);
for (const std::string key : {"R3"})
Loading