Lines Matching refs:destination
111 BPolygon::MapTo(BRect source, BRect destination) in MapTo() argument
114 _MapPoint(fPoints + i, source, destination); in MapTo()
116 _MapRectangle(&fBounds, source, destination); in MapTo()
214 const BRect& destination) in _MapPoint() argument
216 point->x = (point->x - source.left) * destination.Width() / source.Width() in _MapPoint()
217 + destination.left; in _MapPoint()
218 point->y = (point->y - source.top) * destination.Height() / source.Height() in _MapPoint()
219 + destination.top; in _MapPoint()
225 const BRect& destination) in _MapRectangle() argument
230 _MapPoint(&leftTop, source, destination); in _MapRectangle()
231 _MapPoint(&bottomRight, source, destination); in _MapRectangle()