Files
ConformalLabpp/code/include/viewer_utils.h
user2595 704f42bbfd
Some checks failed
C++ Tests / test-fast (push) Has started running
C++ Tests / test-cgal (push) Has been cancelled
API Docs / doc-build (push) Has been cancelled
Doxygen → Codeberg Pages / publish (push) Has been cancelled
Markdown link check / check (push) Has been cancelled
Mirror to Codeberg / mirror (push) Has been cancelled
Merge pull request 'ci+quality: structural gates (CI: 3 new; local: 7 new + .clang-tidy)' (#18) from ci/structural-tests into main
2026-05-26 09:14:45 +00:00

16 lines
402 B
C++

#pragma once
// Copyright (c) 2024-2026 Tarik Moussa.
// SPDX-License-Identifier: MIT
#include <Eigen/Dense>
#include <igl/opengl/glfw/Viewer.h>
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);
}