Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new tool: polyMeshColorize to colorize a mesh #83

Merged
merged 6 commits into from
May 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 8 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,14 @@
(Bertrand Kerautret [#78](https://github.com/DGtal-team/DGtalTools-contrib/pull/78))
- polyMeshEdit: fix preformance issue in display loop.
(Bertrand Kerautret [#84](https://github.com/DGtal-team/DGtalTools-contrib/pull/84))
- polyMeshColorize: tool to colorize a mesh.
(Bertrand Kerautret [#83](https://github.com/DGtal-team/DGtalTools-contrib/pull/83))

# DGtalTools-contrib 1.3

- *global*
- Continuous integration does not use Travis anymore but Github Actions.
(Bertrand Kerautret [#58](https://github.com/DGtal-team/DGtalTools-contrib/pull/58))

- *Geometry3d*
- volFillCCSize: new tool to fill each Connected Component with a value corresponding to the number of voxels of the CC.
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,13 @@ This section, can contain all tools related to visualisation:
- meshViewerEdit: tool to visualize a mesh and to apply simple edits (face removal, color edits...).
- graphViewer: tool to display graphs from a list of edges, a list of vertex and an optionnal list of radius for each edge.
- polyMeshEdit: tool to edit a mesh (add local noise, remove selected faces).

- polyMeshColorize: tool to colorize a mesh.
<table>
<tr>
<td><img width="260" src="https://cloud.githubusercontent.com/assets/772865/12538777/cd8c2d28-c2e2-11e5-93ab-cb4a6cfadc8e.png"></td>
<td> <img width="260" src="https://cloud.githubusercontent.com/assets/772865/12523276/22205f46-c156-11e5-827d-ec788baf7029.png"> </td>
<td><img width="260" src="https://cloud.githubusercontent.com/assets/772865/13536787/02f16df6-e242-11e5-8541-88f8ca3f0a48.png"></td>
<td><img width="260" src=""https://github.com/DGtal-team/DGtalTools-contrib/assets/772865/10592c26-40b4-4cd4-8118-b30a82ab0be3"></td>
</tr>
<tr>
<td>displayTgtCoverAlphaTS</td>
Expand All @@ -110,6 +111,6 @@ This section, can contain all tools related to visualisation:
<td><img width="260" src="https://github.com/DGtal-team/DGtalTools-contrib/assets/772865/5da7e052-d332-4c1e-95bd-bfd06d4cd1e7"></td>
</tr>
<tr>
<td>polyMeshEdit</td>
<td>polyMeshEdit</td><td>polyMeshColorize</td>
</tr>
</table>
3 changes: 2 additions & 1 deletion visualisation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ SET(DGTAL_TOOLS_CONTRIB
)

SET(DGTAL_TOOLS_CONTRIB_POLY
polyMeshEdit
polyMeshEdit
polyMeshColorize
)


Expand Down