This article is related to two patches to cairo, #12717 and #12722. Many times in C, you want values in a certain range, or some that are not above or below a certain value. The process which ensures that values are within a certain range is called clamping.
Let us say that you have function that sets the position of something.
Further assume that the position must be contained within obj:s clip rectangle. That could be accomplished using this code:
A mathematical way to write the clipping would be something like:
obj->x = x, obj->rect.x <= x <= obj->rect.x + obj->rect.width obj->y = y, obj->rect.y <= y <= obj->rect.y + obj->rect.height
Time to introduce the MIN and MAX functions and see how they can help us. In C, they can be implemented as macros.
It should not be any surprise that
and
is exactly equivalent. We can therefore rewrite the boundary checking code in set_pos to take advantage of these macros:
But wait, there is more! The code can be further rewritten if we introduce a CLAMP macro.
Now we can make the set_pos function even more readable:
Note how similar this code is to the imagined mathematical definition. It is also worth noting that the CLAMP macro doesn't work if the value of the upper bound is lower than the lower bound. That is, if obj->rect.width or obj->rect.height is negative, then the macro will give erroneous results.
1 kommentar:
Skicka en kommentar