answersLogoWhite

0


Best Answer

Graphically:

Measure the distance from each point ot the centre of rotation and continue to the other side. This is easiest done by measuring the x and y distances separately; they swap sides of the point: left ←→ right, above ←→ below. eg:

A triangle ABC {(1,1), (3,4), (2,1)} rotated 180° about point (2, 2):

! (1, 1):

x distance is 2 - 1 = 1 to left of centre, so new x is to right at 2 + 1 = 3

y distance is 2 - 1 = 1 below centre, so new y is above at 2 + 1 = 3

→ A' is (3, 3)

B (3, 4)

x distance is 3 - 2 = 1 to right of centre, so new x is to left at 2 - 1 = 1

y distance is 4 - 2 = 2 above centre, so new y is below at 2 - 2 = 0

→ B' is (1, 0)

C (2, 1)

x distance is 2 - 2 = 0 on the centre, so new x is also on the centre at 2 + 0 = 2

y distance is 2 - 1 = 1 below centre, so new y is above at 2 + 1 = 3

→ C' is (2, 3)

Thus triangle ABC {(1,1), (3,4), (2,1)} goes to triangle A'B'C' {(3,3), (1,0), (2,3)} when rotated 180° about centre (2,2).

Algebraically:

Rotating 180° about point (x0, y0):

point (x, y) → (2 x0 - x, 2 y0 - y)

For triangle ABC {(1,1), (3,4), (2,1)} rotated 180° about point (2, 2):

A': (2×2 - 1, 2×2 - 1) = (3, 3)

B': (2×2 - 3, 2×2 - 4) = (1, 0)

C': (2×2 - 2, 2×2 - 1) = (2, 3)

ie ABC → A'B'C {(3,3), (1,0), (2,3)} [as before].

User Avatar

Wiki User

8y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you rotate 180 degrees not around the origin?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you rotate a figure 180 degrees clockwise about origin?

To rotate a figure 180 degrees clockwise about the origin you need to take all of the coordinates of the figure and change the sign of the x-coordinates to the opposite sign(positive to negative or negative to positive). You then do the same with the y-coordinates and plot the resulting coordinates to get your rotated figure.


What is the answer to rotate 180 degrees counterclockwise?

The same as 180 degrees clockwise. What do you mean "the answer to"?


Does the screen spin all the way around?

Yes, the screen will rotate 180 degrees.


How do you rotate triangle 180 degrees about the origin?

Negate each of the x and y components of all three vertices of the triangle. For example, a triangle with vertices (1,2), (8,3), and (5,6) would become (-1,-2), (-8,-3) and (-5,-6) when rotated 180 degrees about the origin.


What is rotate 180 degrees?

A 1/2 rotation


How do you rotate an coordinate 180 degrees?

Change the sign: from + to - or - to +


How far can a horse rotate its ears?

A horse can rotate its ears as far as 180 degrees.


If a shape is rotated by a half turn how many degrees did it rotate?

180 degrees


How do you rotate a figure 180 degrees about origin?

Visualize a capital "N." Rotated 90 degrees counter-clockwise (a quarter turn to the left) it would look like a capital "Z."


When you click rotate left on the drawing toolbar to rotate a graphic in a document how many degrees does it rotate 30 60 90 180?

It rotates 90 degrees.


How do you get your projector to rotate the image from your computer 180 degrees?

a mirror?


How do you rotate a figure 180 degrees counterclockwise around the origin?

For every point A = (x,y) in your figure, a 180 degree counterclockwise rotation about the origin will result in a point A' = (x', y') where: x' = x * cos(180) - y * sin(180) y' = x * sin(180) + y * cos(180) Happy-fun time fact: This is equivalent to using a rotation matrix from Linear Algebra! Because a rotation is an isometry, you only have to rotate each vertex of a polygon, and then connect the respective rotated vertices to get the rotated polygon. You can rotate a closed curve as well, but you must figure out a way to rotate the infinite number of points in the curve. We are able to do this with straight lines above due to the property of isometries, which preserves distances between points.