This is a maths problem I am not exactly sure how to do. The vector is not aligned to an axis, so just rotating 90 degrees around x, y or z won't necessarily give me the other axes.
|
I can think of a couple of different scenarios you might be asking about. Given: A pre-existing coordinate system
Given: One axis in an arbitrary-basis 2D coordinate system If you have one axis in an arbitrary-basis 2D coordinate system, the other axis is the orthogonal vector. To rotate a vector orthogonally counter-clockwise:
To rotate a vector orthogonally clockwise:
To summarize:
Given: Two axes in an arbitrary-basis 3D coordinate system To do this, find the cross product.
Following these three guidelines:
Given: One axis in an arbitrary-basis 3D coordinate system There is not enough information to find the unique solution this problem. This is because, if you look at the second case (One axis in an arbitrary-basis 2D coordinate system), you first need to find an orthogonal vector. However, there are an infinite amount of possible orthogonal vectors to a single axis in 3D space! You can, however, find one of the possible solutions. One way to find an arbitrary one of these orthogonal vectors by finding any vector
For example, if your original axis is
That is, any value of
As you can see, one "formula" that works to is Once you find your two axes Normalization Note that, as you continually do dot products and cross products, your vectors will begin to grow larger and larger. Depending on what you want, this might not be desired. For example, you might want your basis vectors (your coordinate axes) to all be the same size/length. To turn any vector (except for
Where
Now, if I wanted, for example, a vector in the same direction of |
|||||||||||||
|
|
Having only one axis isn't enough, since there are still an infinite number of axes that can be in the perpendicular plane. If you manage to get another axis though, you can use the cross product to find the third. |
|||||||
|
|
Are you talking about a typical 3coordinate system like the one used in a 3D engine? With just a vector you can't find the other two, the only information you will have it the plane on which they lay.. but they can be at any angle also if they're perpendicular with the only one vector you have. |
|||
|
|
|
If you have one vector (x,y,z) you can get one perpendicular vector to it as (y,-x,0) (dot-product is x*y-y*x+0*z = 0) Then you take the cross-product of both to get the remaining perpendicular vector: (x,y,z) × (y,-x,0) = (0y+zx, yz-0x, -x²-y²) = (zx, yz, -x²-y²) |
|||