I have 2 points A and B in a plane. What I need to find is the points w, x, y and z so that I can have a uniform bounding box. The conditions are a line formed by wx and yz are parallel to AB. Similarly wBz and xAy are parallel must be parallel. Also note that angle zwx and wxy are right angles. Basically wxyz has to be a square.
z
/ /
B /
/ /
w /
/ y
/ /
/ A
/ /
x
Basically finding w, x, y and z is easy if line AB is parallel to x-axis or if AB is parallel to y-axis. I'm having trouble determining the points w,x,y and z when line AB is in an angle with x-axis (slope of line AB could be positive or negative).
Any comments/suggestions is highly appreciated. Thanks!