Wiki Page Content

Differences between revisions 5 and 6
Revision 5 as of 2011-01-02 06:16:00
Size: 849
Editor: SheenaSmith
Comment: update formatting - enums, structs, the/an
Revision 6 as of 2011-09-16 17:31:47
Size: 856
Editor: SheenaSmith
Comment: update content - 9/16 2abc5a4210d5 (add NULL handling in Remarks); camelcase
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
#pragma disable-camelcase #pragma camelcase off
Line 26: Line 26:
If the rectangle defined by '''rect''' has a width or height <= 0 it has no area and this function returns SDL_TRUE. If both width and height are > 0 the rectangle has area and this function returns SDL_FALSE. If the rectangle defined by '''rect''' is NULL or has a width or height <= 0 it has no area and this function returns SDL_TRUE. If both width and height are > 0 the rectangle has area and this function returns SDL_FALSE.

SDL_RectEmpty

Use this function to check whether a rectangle has no area.

Syntax

SDL_bool SDL_RectEmpty(const SDL_Rect* rect)

Function Parameters

rect

the SDL_Rect structure representing the rectangle to check

Return Value

Returns SDL_TRUE if the rectangle has no area or SDL_FALSE if it does; see Remarks for details.

Code Examples

You can add your code example here

Remarks

If the rectangle defined by rect is NULL or has a width or height <= 0 it has no area and this function returns SDL_TRUE. If both width and height are > 0 the rectangle has area and this function returns SDL_FALSE.


CategoryAPI, CategoryRect

None: SDL_RectEmpty (last edited 2013-08-11 12:23:59 by PhilippWiesemann)

(Page Info.)
Feedback
Please include your contact information if you'd like to receive a reply.
Submit