HP Forums
(50g) Inserting Text on the Graph Screen - Printable Version

+- HP Forums (https://www.hpmuseum.org/forum)
+-- Forum: HP Software Libraries (/forum-10.html)
+--- Forum: General Software Library (/forum-13.html)
+--- Thread: (50g) Inserting Text on the Graph Screen (/thread-3163.html)



(50g) Inserting Text on the Graph Screen - Eddie W. Shore - 02-21-2015 03:54 PM

PCTEXT: Puts text on the graph screen.

The program does not immediately show the graph screen, which allows for use as a subroutine. Not perfect, but efficient.

Input:
2: coordinates
1: string

Code:
<< 1 →GROB PICT ROT C→PX ROT GXOR >> 



RE: (50g) Inserting Text on the Graph Screen - rprosperi - 02-21-2015 08:16 PM

(02-21-2015 03:54 PM)Eddie W. Shore Wrote:  PCTEXT: Puts text on the graph screen.

The program does not immediately show the graph screen, which allows for use as a subroutine. Not perfect, but efficient.

Input:
2: coordinates
1: string

Code:
<< 1 →GROB PICT ROT C→PX ROT GXOR >> 

What format should be used for coordinates (list?), and presumably these are pixels?

An example would help a lot.