feat(probe): added getRadius and start of ray cast solution

This commit is contained in:
2025-02-23 14:11:50 -05:00
parent d8789bd343
commit ce299ebfe1
2 changed files with 58 additions and 0 deletions

View File

@@ -33,6 +33,12 @@ namespace Probe {
*/
void glVisView(mfem::GridFunction& u, mfem::Mesh& mesh,
const std::string& windowTitle = "solution");
double getMeshRadius(mfem::Mesh& mesh);
std::vector<double> getRaySolution(mfem::GridFunction& u, mfem::Mesh& mesh,
const std::vector<double>& rayDirection,
int numSamples);
/**
* @brief Class to manage logging operations.