aBox vs aBox.Volume()
Hi All, I'm not seeing why some lines of code on p. 503 are:
return value < aBox.Volume();
and others are
return value < aBox;
I can see that in the straight aBox lines, the aBox is a LEFT HAND operand, but the body of the function doesn't ever put aBox on the left side of the > or < operators.
What am I missing? Thanks!!
|