I have a "box" made out of two three-dimensional vectors. One for the front-lower-left corner and one for the back-upper-right corner.

Are there any simple way to check if a third three-dimensional vector is anywhere inside this "box"?

First i wrote simething like (psuedo):

p = pointToCompare;
a = frontLowerLeft;
b = backUpperRight;

if(p.x >= a.x && p.x <= b.x && p.y >= a.y ...

But that does only work if all coordinates are positive, which they won't always be. Should i do something like the above, or are there any better/simpler way to do this calculation?

If you would like to know, this is the Vector and it's method i'm using: http://www.jmonkeyengine.com/doc/com/jme/math/Vector3f.html

link|improve this question

33% accept rate
2  
This approach should work even for negative coordinates! The only case it won't work for is if your box coordinates aren't really front-lower-left and back-upper-right. – Oli Charlesworth Nov 7 '10 at 11:55
1  
This sounds underdetermined to me. Is the box assumed to be axis-aligned? – Drew Hall Nov 7 '10 at 11:58
Mistake by me. The described method does work even with negative coordinates. And yes, the box is axis-aligned. – EClaesson Nov 7 '10 at 12:03
What does it mean for a vector to be inside a box? When you say "vector", do you mean "point"? – Gareth Rees Nov 8 '10 at 18:54
Yes i meant a point. A point whos position is defined by a three-dimensional vector. – EClaesson Nov 9 '10 at 10:05
feedback

2 Answers

up vote 3 down vote accepted

If you want to make it a little more robust, you could make it invariant to the position of the corners:

if (a.x <= p.x && p.x <= b.x || b.x <= p.x && p.x <= a.x) {
  // similar to the y- and z-axes.
}

A more intutive (but slightliy slower) variant would be to use min/max on each axis:

if (Math.min(a.x, b.x) <= p.x && p.x <= Math.max(a.x, b.x)) {
  // ...
}
link|improve this answer
feedback

Here is a general solution for a box that may not be even right angles, ie a generic parallelopiped.

The trick here is to find the transformation that transforms your box into the unit cube. If you then throw your vector that you want to test through this transformation, you would just need to check that X, Y and Z all lie between zero and one.

Consider a corner point on your box to be your origin. Let's call that K. Now construct your three principal axes P Q R as the vectors that extend along the three edges that touch this point.

Now any point in three-dimensional space can be represented as K + aP + bQ + cR. moreover, there is only one (a, b, c) that satisfies.

If you can determine (a, b, c) you simply need to check that each is between zero and one.

If anyone is interested in the matrix math, give me a bell!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.