meshing a rhombus using c++

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • antony joseph
    New Member
    • Aug 2007
    • 1

    meshing a rhombus using c++

    input data 4 (verticies)coor dinates are known is it possible
  • emaghero
    New Member
    • Oct 2006
    • 85

    #2
    Originally posted by antony joseph
    input data 4 (verticies)coor dinates are known is it possible
    You need to be a lot clearer on what you require.

    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

    Working...