| Author |
Getting strange results from Rectangle outcode method
|
john mattucci
Ranch Hand
Joined: Nov 03, 2000
Posts: 331
|
|
I have the following nodeRect.outcode(currentRect.getX(), currentRect.getY()); and I get the value of 3 and 0 and 6 I know OUT_BOTTOM = 8 OUT_LEFT = 1 OUT_RIGHT = 4 OUT_TOP = 2 but what are the other values? Thank you for your time
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24057
|
|
The return value is the sum of all applicable values. 3 is 1+2, and 6 is 2+4.
|
[Jess in Action][AskingGoodQuestions]
|
 |
 |
|
|
subject: Getting strange results from Rectangle outcode method
|
|
|