Monday, March 31, 2014

HP Prime: BLIT (Video!)

Hey everyone!  Here is the a video on the BLIT (and BLIT_P) command for the HP Prime:

https://www.youtube.com/watch?v=FD_aDzAa_s0

BLIT is basically a copy and paste command, copying one segment of a graphics screen or object, and pasting it on another segment. 

Please let me know if this is helpful.

Simplified Syntax (using the same graphics object and having no color filtering):
Coordinate Version:
BLIT(tx1, ty1, tx2, ty2, sx1, sy1, sx2, sy2)

Pixel Version:
BLIT_P(tx1, ty1, tx2, ty2, sx1, sy1, sx2, sy2)

tx1, ty1, tx2, ty2:  Corners of targeted segment (Paste)
sx1, sy1, sx1, sy2:  Corners of source segment (Copy)

Let me know if this video is helpful and I'll talk to you again soon!

Eddie



This blog is property of Edward Shore.   2014

TI 30Xa Algorithms: Fundamental Horizontal Circle Calculations

  TI 30Xa Algorithms: Fundamental Horizontal Circle Calculations Introduction and Formulas Given the following: r = radi...