Jochem Van Der Spek
Jochem Van Der Spek

Reputation: 311

triangulation of 3d mesh into equidistant points

I've been looking for an algorithm that takes any mesh and triangulates it so that all edges are of equal length.

I have some experience in mesh generation and triangulation, but I don't know of any algorithm that can do this, nor can I find it.

Is there any?

Upvotes: 1

Views: 479

Answers (1)

Ahmed Matar
Ahmed Matar

Reputation: 251

I think what you are looking for is remeshing algorithms, for start with some Google search i found this paper and i think it might be useful to help understanding remeshing in the first place.

Implementation wise OpenFlipper has more than one implementation of remeshing, it is open source and easy to read and learn from.

This is an example of remeshing using OpenFlipper

remshing using OpenFlipper

As you can see you can choose target edge length then start remeshing process resulting

remshing using OpenFlipper

Upvotes: 2

Related Questions