Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

sdl.blitsurface(3kaya) [debian man page]

SDL.blitSurface(3kaya)					       Kaya module reference					    SDL.blitSurface(3kaya)

NAME
SDL::blitSurface - Copy from one surface to another SYNOPSIS
Void blitSurface( SDLSurface src, Rect srcrect, SDLSurface dest, Rect destrect ) ARGUMENTS
src The source surface srcrect The portion of the source surface to copy dest The destination surface destrect The location on the destination surface to copy to (the width and height of this rectangle are ignored) DESCRIPTION
Copy a rectangle of pixels from one surface to another, for example from a loaded image to the screen. screen = newSurface(640,480,BPP24,false); pic = loadSurface("mypic.bmp"); blitSurface(pic,Rect(0,0,40,40),screen,Rect(200,200,px,py)); updateScreen(screen); If you are copying to the screen surface, remember that these updates will not be displayed until you call SDL.updateScreen(3kaya) AUTHORS
Kaya standard library by Edwin Brady, Chris Morris and others (kaya@kayalang.org). For further information see http://kayalang.org/ LICENSE
The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation. RELATED
SDL.Rect(3kaya) SDL.loadSurface(3kaya) SDL.newSurface(3kaya) SDL.updateScreen(3kaya) Kaya October 2012 SDL.blitSurface(3kaya)

Check Out this Related Man Page

Prelude.isPunct(3kaya)					       Kaya module reference					    Prelude.isPunct(3kaya)

NAME
Prelude::isPunct - Checks if the character is punctuation SYNOPSIS
Bool isPunct( Char c ) ARGUMENTS
c The character DESCRIPTION
Returns true if the character is punctuation. AUTHORS
Kaya standard library by Edwin Brady, Chris Morris and others (kaya@kayalang.org). For further information see http://kayalang.org/ LICENSE
The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation. RELATED
Prelude.isAlpha(3kaya) Prelude.isAlnum(3kaya) Prelude.isDigit(3kaya) Prelude.isLineEnding(3kaya) Prelude.isLower(3kaya) Prelude.isUpper(3kaya) Prelude.isGraph(3kaya) Prelude.isSpace(3kaya) Kaya October 2012 Prelude.isPunct(3kaya)
Man Page

2 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Copy code to vi

Hi, whenever I copy a code to vi session from other script it just goes weird. It just goes across the whole screen and looks really bizzare If the code is small I can manually remove the tabs and indent it correctly but if it is 2000 lines it makes it really difficult. Is there something... (12 Replies)
Discussion started by: rooh
12 Replies

2. UNIX for Dummies Questions & Answers

Copying & moving en masse

I'm new to UNIX and have got some of the basics down, but I've got a puzzle I'm having difficulty working out. :confused: Scenario: Have FILE_A.JPG in DIR_A Need to copy FILE_A 200 times and rename it 200 different names. List of 200 names in NAME_FILE.TXT After renaming 200 files,... (4 Replies)
Discussion started by: anekab
4 Replies