Gazebo | Ignition | Community
Ask Your Question
1

Low-level access to triangle faces of mesh

asked 2016-12-05 01:59:16 -0500

pradeepr gravatar image

Is there any API to access triangle faces of a particular mesh ?

I want to implement a boat dynamics plugin that realistically deals with water-hull interaction.

Specifically, I want to mimic water interaction model for boats in video games. My idea is to compute water-hull interaction forces and apply it as wrench to the root link element of the boat model.

Here water is just going to be a grid of points that move up and down. The faces constructed by joining them serves as the uneven water surface. The hull of the boat is going to be a V shaped extrusion (much like a business card bent in half).

If Gazebo does not provide such functions, are there any robotics oriented simulator that may suit my needs.

edit retag flag offensive close merge delete

2 Answers

Sort by ยป oldest newest most voted
0

answered 2017-08-11 15:08:21 -0500

tve gravatar image

Have you made any progress on the boat dynamics plugin? It's exactly what I'm embarking on...

edit flag offensive delete link more
0

answered 2016-12-06 11:01:46 -0500

chapulina gravatar image

That sounds like an awesome project!

You can use the MeshManager to get the mesh for your boat. The Mesh class has the API you're looking for, which gives access to vertices, normals, etc.

You'll probably also need to use the physics API to apply forces to your boat model.

edit flag offensive delete link more

Comments

I looked into the MeshManager class. It seems to be the right way to go. Thanks for the suggestion. I believe I need to use the [GetMesh](http://osrf-distributions.s3.amazonaws.com/gazebo/api/dev/classgazebo_1_1common_1_1MeshManager.html#a5f3ec75157e70e9800a7445a3e55a58d) function. Naturally, it requires a Mesh name string to be given as a parameter. I am sure I need to use the GetName function of the Link object. But, how do I get the mesh name/names associated with a link.

pradeepr gravatar imagepradeepr ( 2016-12-06 13:22:50 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2016-12-05 01:51:10 -0500

Seen: 758 times

Last updated: Dec 06 '16