Lines Matching refs:rb
259 vec2 rb( bounds.right, bounds.bottom ); in transform() local
264 rb = transform(rb); in transform()
267 r.left = static_cast<int32_t>(floorf(std::min({lt[0], rt[0], lb[0], rb[0]}))); in transform()
268 r.top = static_cast<int32_t>(floorf(std::min({lt[1], rt[1], lb[1], rb[1]}))); in transform()
269 r.right = static_cast<int32_t>(ceilf(std::max({lt[0], rt[0], lb[0], rb[0]}))); in transform()
270 r.bottom = static_cast<int32_t>(ceilf(std::max({lt[1], rt[1], lb[1], rb[1]}))); in transform()
272 r.left = static_cast<int32_t>(floorf(std::min({lt[0], rt[0], lb[0], rb[0]}) + 0.5f)); in transform()
273 r.top = static_cast<int32_t>(floorf(std::min({lt[1], rt[1], lb[1], rb[1]}) + 0.5f)); in transform()
274 r.right = static_cast<int32_t>(floorf(std::max({lt[0], rt[0], lb[0], rb[0]}) + 0.5f)); in transform()
275 r.bottom = static_cast<int32_t>(floorf(std::max({lt[1], rt[1], lb[1], rb[1]}) + 0.5f)); in transform()
285 vec2 rb(bounds.right, bounds.bottom); in transform() local
290 rb = transform(rb); in transform()
293 r.left = std::min({lt[0], rt[0], lb[0], rb[0]}); in transform()
294 r.top = std::min({lt[1], rt[1], lb[1], rb[1]}); in transform()
295 r.right = std::max({lt[0], rt[0], lb[0], rb[0]}); in transform()
296 r.bottom = std::max({lt[1], rt[1], lb[1], rb[1]}); in transform()