Lines Matching refs:rTuple
48 explicit B3IRange(const B3ITuple& rTuple) in B3IRange() argument
49 : maRangeX(rTuple.getX()), in B3IRange()
50 maRangeY(rTuple.getY()), in B3IRange()
51 maRangeZ(rTuple.getZ()) in B3IRange()
201 bool isInside(const B3ITuple& rTuple) const in isInside()
204 maRangeX.isInside(rTuple.getX()) in isInside()
205 && maRangeY.isInside(rTuple.getY()) in isInside()
206 && maRangeZ.isInside(rTuple.getZ()) in isInside()
228 void expand(const B3ITuple& rTuple) in expand() argument
230 maRangeX.expand(rTuple.getX()); in expand()
231 maRangeY.expand(rTuple.getY()); in expand()
232 maRangeZ.expand(rTuple.getZ()); in expand()