Center of a triangle

Started by
3 comments, last by Jallen 23 years, 1 month ago
Hi, Anyone know of a quick way to find the center of an arbitrary triangle? Thanks, Jason A. --- I write code. DelphiGL (http://delphigl.cfxweb.net)
---I write code.DelphiGL (http://delphigl.cfxweb.net)
Advertisement
I''d say find the change in x and go halfway...then find the change in y and go halfway...
You just add the vertices together and divide by three...

      // v1, v2 and v3 are the vertices.    Vertex center;    center.x = (v1.x + v2.x + v3.x) * 0.3333333;    center.y = (v1.y + v2.y + v3.y) * 0.3333333;    center.z = (v1.z + v2.z + v3.z) * 0.3333333;  


but if you are just sorting them based on their center points, you don''t have to do the multiplly.
There are quite a selection of "centers of triangles"...

Taking the average of the x values and the average of the y values will only give you the center of gravity of the three corners. If you want the center of gravity of the triangle, you''ll need some more work. It''s at the point where the lines joining corners to the midpoint of the opposite sides all meet - but I can''t be bothered to do the math right now.
yeah, i had posted the averaging solution in his other identical thread of his. i think that''s an okay way.

a2k
------------------General Equation, this is Private Function reporting for duty, sir!a2k

This topic is closed to new replies.

Advertisement