Size: 1127
Comment: temp
|
Size: 1148
Comment: temp
|
Deletions are marked like this. | Additions are marked like this. |
Line 20: | Line 20: |
||'''clip'''||an optional rectangle ([[SDL_Rect]]); see [[#Remarks|Remarks]]|| ||'''result'''||a pointer to an [[SDL_Rect]] to be filled in|| |
||'''clip'''||an optional rectangle ([[SDL_Rect]]); see [[#Remarks|Remarks]] for details|| ||'''result'''||a pointer to a [[SDL_Rect|rectangle]] to be filled in|| |
SDL_EnclosePoints
Use this function to calculate a minimal rectangle enclosing a set of points.
Contents
Syntax
SDL_bool SDL_EnclosePoints(const SDL_Point* points,
int count,
const SDL_Rect* clip,
SDL_Rect* result)
Function Parameters
points |
a pointer to an array of SDL_Points to be enclosed |
count |
the number of points |
clip |
|
result |
a pointer to a rectangle to be filled in |
Return Value
Returns SDL_TRUE if any points were within the clipping rect.
green
Code Examples
You can add your code example here
Remarks
You can add useful comments here