#pragma once // Copyright (c) 2024-2026 Tarik Moussa. // SPDX-License-Identifier: MIT #include #include namespace viewer_utils { /// Open an interactive libigl OpenGL viewer window showing the mesh /// `(V, F)`. Built only when `WITH_VIEWER=ON`; declaration here, body /// in `viewer.cpp`. void simple_visualize(Eigen::MatrixXd& V, Eigen::MatrixXi& F); }