Documentation Overview

This documentation utilizes visual aids and simplified terminology to enhance understanding while maintaining technical accuracy. For unresolved questions, please contact me via e-mail.


Mesh Embedding Module

Header Files

Mesh_Types.h

Mesh_Embedding.h

Mesh Embedding Visualization: 3D lion to 2D convex polygon Mapping
A 3D surface patch is parameterized onto a planar convex polygon.

Function Purpose

Implements Tutte's embedding algorithm to parameterize 3D open meshes with a single boundary loop onto a 2D convex polygon.

Function Signature

MeshTypes::Mesh2D result_mesh = MeshEmbedding::TutteEmbedding::Parameterize(
    const MeshTypes::Mesh3D& mesh,
    const std::vector<std::vector<size_t>>& boundary_chains,
    const size_t weight_type = 1,
    const size_t check_interval = 100,
    const size_t max_iterations = 100000000
);

Input Parameters

mesh (MeshTypes::Mesh3D structure)
  • vertices: Vector of 3D coordinates (v1, v2, ..., vN)
  • faces: Vector of triangular faces (t1, t2, ..., tM)
boundary_chains (2D vector<size_t>)
Boundary vertex sequences:
  • Format: {{v11,...,v1N1}, {v21,...,v2N2},..., {vL1,...,vLNL}}
  • Boundary continuity: viNi = v(i % L + 1)1, i = 1, 2,..., L
weight_type (size_t)
Weighting scheme selection:
  • 0: Uniform Laplace weights: wij = 1
  • 1: Mean value coordinates (default):
    wij = [tan(α/2) + tan(β/2)] / ||vi - vj||
    where α and β are angles adjacent to edge (i,j)
check_interval (size_t)
Injectivity verification frequency (default: 100 iterations)
max_iterations (size_t)
Maximum solver iterations (default: 108)

Output

result_mesh (MeshTypes::Mesh2D structure)
  • vertices: Vector of 2D coordinates (v'1, v'2, ..., v'N)
  • faces: Vector of triangular faces (t1, t2, ..., tM)

Example

main.cpp
Parameterization Example: Pyramid Structure Mapping
An example of pyramid structure parameterization with color-coded boundary mapping.

Critical Notes


Mesh Shortest_Path Module

Header Files

Mesh_Types.h

Mesh_Shortest_Path.h

Mesh Shortest Path Visualization: find the shortest path (green lines) between two points (green points) on a 3D lion with some points been occupied (red points).
A shortest path is found between two given points.