Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rdeits/meshutil
Matlab utilities for 3D meshes
https://github.com/rdeits/meshutil
Last synced: 2 days ago
JSON representation
Matlab utilities for 3D meshes
- Host: GitHub
- URL: https://github.com/rdeits/meshutil
- Owner: rdeits
- License: mit
- Created: 2014-05-12T16:00:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-15T04:17:06.000Z (over 10 years ago)
- Last Synced: 2024-10-12T14:53:19.640Z (about 1 month ago)
- Language: Matlab
- Size: 805 KB
- Stars: 0
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE.md
Awesome Lists containing this project
README
MeshUtil
========Some useful tools for playing with 3D meshes in MATLAB.
sketch_mesh:
------------
Generate a pretty wireframe from a modelExample usage:
>> [vertices, faces] = meshutil.toolbox_graph.read_mesh('/home/rdeits/drc/software/drake/examples/Glider/meshes/GliderFuselage.obj');
>> meshutil.sketch_mesh(vertices, faces);Original:
![](https://rdeits.github.io/meshutil/img/glider_orig.png)
Sketch:
![](https://rdeits.github.io/meshutil/img/glider_sketch.png)
iris_contact_patch:
-------------------
Generate a convex contact patch on a 3D model. Requires [IRIS for MATLAB](https://github.com/rdeits/iris-distro).Usage:
>> meshutil.iris_contact_patch
![](https://rdeits.github.io/meshutil/img/bunny_patch_1.png)
![](https://rdeits.github.io/meshutil/img/bunny_patch_2.png)