What is the simplest algorithm for mesh generation of an arbitrary quadrilateral?
What is the simplest algorithm for decomposing a quadril开发者_开发问答ateral into an arbitrary number of triangles?
Probably midpoint triangle subdivision. Cut your quad into two triangles, then use the midpoints of each triangle edge as vertexes for four new triangles.
精彩评论