Skip to content

Commit fe0cb51

Browse files
DOCS-FIX separation line in bullet point list was missing.
1 parent a88e473 commit fe0cb51

17 files changed

+17
-0
lines changed

docs/examples/example_intersections.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Mesh Intersections
44
This example demonstrates how to compute intersections between two triangle meshes using COMPAS CGAL.
55

66
Key Features:
7+
78
* Computing intersection curves between meshes
89
* Visualizing intersection results
910
* Handling multiple intersection curves

docs/examples/example_measure.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Mesh Measurements
44
This example demonstrates how to compute basic geometric measurements of a mesh using COMPAS CGAL.
55

66
Key Features:
7+
78
* Computing mesh surface area
89
* Computing mesh volume
910
* Computing mesh centroid

docs/examples/example_meshing.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Mesh Remeshing
44
This example demonstrates how to remesh a triangle mesh using COMPAS CGAL.
55

66
Key Features:
7+
78
* Loading PLY mesh files
89
* Mesh transformation and centering
910
* Remeshing with target edge length

docs/examples/example_nanobind_types.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Type Conversion with Nanobind
44
This example demonstrates proper type conversion patterns between C++ and Python using nanobind in COMPAS CGAL.
55

66
Key Features:
7+
78
* Basic type conversion (integers)
89
* Matrix passing with Eigen::Ref (in-place modification)
910
* Matrix creation in C++ and transfer to Python

docs/examples/example_reconstruction_pointset_normal_estimation.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Point Cloud Normal Estimation
44
This example demonstrates how to estimate normals from a point cloud using COMPAS CGAL.
55

66
Key Features:
7+
78
* Loading point clouds from PLY files
89
* Point cloud density reduction
910
* Normal estimation using k-nearest neighbors

docs/examples/example_reconstruction_pointset_outlier_removal.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Point Cloud Outlier Removal
44
This example demonstrates how to remove outliers from a point cloud using COMPAS CGAL.
55

66
Key Features:
7+
78
* Loading point clouds from PLY files
89
* Removing outliers based on neighborhood analysis
910
* Visualization of inliers and outliers with different colors

docs/examples/example_reconstruction_pointset_reduction.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Point Cloud Reduction
44
This example demonstrates how to reduce the density of a point cloud using COMPAS CGAL.
55

66
Key Features:
7+
78
* Loading point clouds from PLY files
89
* Point cloud density reduction with specified percentage
910
* Side-by-side visualization of original and reduced point clouds

docs/examples/example_reconstruction_pointset_smoothing.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Point Cloud Smoothing
44
This example demonstrates how to smooth a point cloud using COMPAS CGAL.
55

66
Key Features:
7+
78
* Loading point clouds from PLY files
89
* Point cloud smoothing with specified iterations and neighborhood size
910
* Side-by-side visualization of original and smoothed point clouds

docs/examples/example_reconstruction_poisson_surface_reconstruction.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Poisson Surface Reconstruction
44
This example demonstrates how to perform Poisson surface reconstruction from a point cloud with normals using COMPAS CGAL.
55

66
Key Features:
7+
78
* Loading point clouds with normals from XYZ files
89
* Poisson surface reconstruction to create a mesh
910
* Mesh transformation and visualization

docs/examples/example_skeletonization.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Mesh Skeletonization
44
This example demonstrates how to compute the geometric skeleton of a triangle mesh using COMPAS CGAL.
55

66
Key Features:
7+
78
* Loading and transforming OFF mesh files
89
* Mesh subdivision using Loop scheme
910
* Skeleton computation using mean curvature flow

docs/examples/example_slicer.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Mesh Slicing
44
This example demonstrates how to slice a mesh with multiple planes using COMPAS CGAL.
55

66
Key Features:
7+
78
* Loading STL mesh files
89
* Creating multiple slice planes from bounding box
910
* Slicing mesh with multiple planes

docs/examples/example_straight_skeleton_2_interior_straight_skeleton.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Interior Straight Skeleton
44
This example demonstrates how to compute the interior straight skeleton of a polygon using COMPAS CGAL.
55

66
Key Features:
7+
78
* Computing straight skeleton from polygon points
89
* Visualization of inner bisectors and edges
910
* Color-coded display of different edge types

docs/examples/example_straight_skeleton_2_interior_straight_skeleton_offset_polygon.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Polygon Offsetting
44
This example demonstrates how to create offset polygons (inward and outward) using COMPAS CGAL.
55

66
Key Features:
7+
78
* Creating inner and outer polygon offsets
89
* Handling complex polygon shapes
910
* Color-coded visualization of original and offset polygons

docs/examples/example_straight_skeleton_2_interior_straight_skeleton_weighted_offset_polygon.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Weighted Polygon Offsetting
44
This example demonstrates how to create weighted offset polygons using COMPAS CGAL.
55

66
Key Features:
7+
78
* Creating weighted polygon offsets
89
* Specifying different weights for each edge
910
* Visualization of original and weighted offset polygons

docs/examples/example_straight_skeleton_2_interior_straight_skeleton_with_holes.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Straight Skeleton with Holes
44
This example demonstrates how to compute the straight skeleton of a polygon with holes using COMPAS CGAL.
55

66
Key Features:
7+
78
* Computing straight skeleton for polygons with holes
89
* Handling multiple interior holes
910
* Color-coded visualization of different edge types

docs/examples/example_subdivision.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Mesh Subdivision
44
This example demonstrates different mesh subdivision schemes available in COMPAS CGAL.
55

66
Key Features:
7+
78
* Catmull-Clark subdivision for quad meshes
89
* Loop subdivision for triangle meshes
910
* √3 (sqrt3) subdivision for triangle meshes

docs/examples/example_triangulation.rst

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Mesh Triangulation
44
This example demonstrates how to perform constrained and refined Delaunay triangulation using COMPAS CGAL.
55

66
Key Features:
7+
78
* Creating polygonal boundary and holes
89
* Conforming Delaunay triangulation
910
* Refined Delaunay meshing with size constraints

0 commit comments

Comments
 (0)