input data 4 (verticies)coor dinates are known is it possible
meshing a rhombus using c++
Collapse
X
-
Tags: None
-
You need to be a lot clearer on what you require.Originally posted by antony josephinput data 4 (verticies)coor dinates are known is it possible
It seems to me that you want to discretise a region of the plane bounded by four vertices. There are algorithms out there that can help you do this. But it depends on what you want to do.
I have written my own mesh generator for rectangular regions of the plane. It works quite well but it is specific to my application. In theory it could be generalised to mesh irregular quadrilaterals, but I'm not going to be doing that right now.
I have heard of a process called "Delaun ay Triangulation&q uot;. It is a concept from computational geometry that is used to assign a triangular to a given region of the plane. You should probably google it to obtain more info.
Comment