libnxter  0.1
Functions
Screen.nxc File Reference

Display functions for text and graphs. More...

#include "Vector.nxc"
Include dependency graph for Screen.nxc:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

void ScreenClear ()
 Clears screen.
 
void PrintText (string text, int waitTime)
 Prints a line of text. It scrolls the screen if there no line left.
 
void PrintNum (long num, int waitTime)
 Prints a number. It scrolls the screen if there no line left.
 
void Print (string format, long num, int waitTime)
 Prints a formated string with a number. It scrolls the screen if there no line left.
 
void PlotterInit (Plotter &plotter, int plotType, long minX, long maxX, long minY, long maxY)
 Initializes a plotter. There can be multiple plotters (for each graph) active simultaneous to draw on screen.
 
void PlotterPlot (Plotter &plotter, long x, long y)
 Plots the given point using the plotter on screen.
 
void PlotterPlotVector (Plotter &plotter, Vector &vec)
 Plots the given vector (x,y) using the plotter on screen.
 

Detailed Description

Display functions for text and graphs.

Definition in file Screen.nxc.