Find corners of a rotated rectangle given its center point and rotation

后端 未结 3 635
南旧
南旧 2021-01-15 08:18

Can someone give me an algorithm that finds the position of all four corners of a rectangle if I know its center point(in global coordinate space), width and height, and its

相关标签:
3条回答
  • 2021-01-15 08:53

    The coordinates of each vertices:

     Center point = (center.x, center.y)
     Angle        = angle
     Height       = height
     Width        = width      
    
    
    
    TOP RIGHT VERTEX:
    Top_Right.x = center.x + ((width / 2) * cos(angle)) - ((height / 2) * sin(angle))
    Top_Right.y = center.y + ((width / 2) * sin(angle)) + ((height / 2) * cos(angle))
    
    
    
    TOP LEFT VERTEX:
    Top_Left.x = center.x - ((width / 2) * cos(angle)) - ((height / 2) * sin(angle))
    Top_Left.y = center.y - ((width / 2) * sin(angle)) + ((height / 2) * cos(angle))
    
    
    
    BOTTOM LEFT VERTEX:
    Bot_Left.x = center.x - ((width / 2) * cos(angle)) + ((height / 2) * sin(angle))
    Bot_Left.y = center.y - ((width / 2) * sin(angle)) - ((height / 2) * cos(angle))
    
    
    
    BOTTOM RIGHT VERTEX:
    Bot_Right.x = center.x + ((width / 2) * cos(angle)) + ((height / 2) * sin(angle))
    Bot_Right.y = center.y + ((width / 2) * sin(angle)) - ((height / 2) * cos(angle))
    

    This algorithm is a compressed version of these 3 steps:

    Step 1: Center your rectangle around the origin

    Step 2: Apply the rotation matrix to each vertex

    Step 3: Move the rotated rectangle to the correct position, by adding the center point to each coordinate

    This is explained in more depth here https://math.stackexchange.com/questions/126967/rotating-a-rectangle-via-a-rotation-matrix

    0 讨论(0)
  • 2021-01-15 08:59

    If you need all of the corners, it just might be faster to create two perpendicular vectors from the center of the rectangle to both of its sides, and then to add/subtract these vectors to/from the center of the rectangle to form the points.

    This might be faster, since you don't need to repeatedly call sin() and cos() functions (you do so only once for each).

    Assuming we have a Vector library (for cleaner code - only helps with vector arithmetic), here is the code in Python:

    def get_corners_from_rectangle(center: Vector, angle: float, dimensions: Vector):
       # create the (normalized) perpendicular vectors
       v1 = Vector(cos(angle), sin(angle))
       v2 = Vector(-v1[1], v1[0])  # rotate by 90
    
       # scale them appropriately by the dimensions
       v1 *= dimensions[0] / 2
       v2 *= dimensions[1] / 2
    
       # return the corners by moving the center of the rectangle by the vectors
       return [
          center + v1 + v2,
          center - v1 + v2,
          center - v1 - v2,
          center + v1 - v2,
       ]
    
    0 讨论(0)
  • 2021-01-15 09:16

    Top right corner has coordinates w/2, h/2 relative to the center. After rotation its absolute coordinates are

     x = cx + w/2 * Cos(Phi) - h/2 * Sin(Phi)
     y = cy + w/2 * Sin(Phi) + h/2 * Cos(Phi)
    
    0 讨论(0)
提交回复
热议问题