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
16 lines
402 B
C++
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);
|
|
|
|
}
|