How do I draw an equilateral triangle given the center as cx
and cy
and the radius of the centroid circle ?
And how do I find if a point is within the triangle or not ?
PS: I am building this for android
, but this question is language agnostic.
Step 1: Find the midpoint of all the three sides of the triangle. Step 2: Draw a perpendicular from midpoint to the opposite vertex. This perpendicular line is called the median. Step 3: These three medians meet at a point.
Formulas and Calculations for an Equilateral Triangle: Area of Equilateral Triangle Formula: K = (1/4) * √3 * a2. The altitude of Equilateral Triangle Formula: h = (1/2) * √3 * a. Angles of Equilateral Triangle: A = B = C = 60 degrees. Sides of Equilateral Triangle: a equals b equals c.
Point C in your diagram above is simple, just ( cx, cy + r ).
I can think of two fairly easy ways to get the points a and b:
First Method: Pretend that (cx,cy) is the origin and rotate point C by 60 degrees and by 120 degrees in order get a and b. This can be accomplished with the formula:
Also take a look at this article on wikipedia.
Second Method: draw a line which passes through (c.x, c.y) and has a -30 degree slope. Where that line intersects with the circle will be point b. The circle is defined by the equation:
( x - c.x )^2 + ( y - c.y )^2 = r^2
(note, there will be two intersection points, so choose the right one).
Then do the same with a positive 30 degree angle line through (c.x, c.y) to get point a.
Your lines would have slopes: 1 / sqrt(3) and -1 / sqrt(3)
Once you have the points A, B, and C that form the equilateral triangle, one of the fastest and easiest ways to detect if a point (x,y) lies in the triangle is based on the cross product and vectors.
Basically, see if (x,y) is to the left of the "vector" A->B. Then see if it is to the left of B->C. Then check to see if it is to the left of C->A.
The following method quoted from here lets you check if a point is to the left of a vector.
public bool isLeft(Point A, Point B, Point C){
return ((B.x - A.x)*(C.y - A.y) - (B.y - A.y)*( C.x - A.x)) > 0;
}
In the method A = line point1, b = line point2, and c = point to check against.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With