
Ian M. answered 03/27/19
JavaScript, Web Application Engineer
You can find the centroid of any polygon by averaging all of its vertices. If, for example, you know the exact x,y coordinates of the points of your triangle, then add up all the x values and divide by three, then add up all the y values and divide by three. That's your center.
Ian