GRAPHICS PRIMITIVES: COLOR AT POINT

This example will use the POINT function to retrieve the color at the given position on the screen.

source compile sandbox issues? back to examples

SOURCE CODE ()

    BITMAP ENABLE(16)

    CLS

    PLOT 0, 0, WHITE
    PLOT 1, 1, WHITE
    PLOT 2, 2, WHITE
    PLOT 3, 3, WHITE

    c1 = POINT(0,0)
    c2 = POINT(1,1)
    c3 = POINT(2,2)
    c4 = POINT(3,3)

    IF ( c1 = WHITE ) AND ( c2 = WHITE ) AND ( c3 = WHITE ) AND ( c4 = WHITE ) THEN
        PRINT "OK!"
    ELSE
        PRINT "KO!"
        PRINT HEX(c1)
        PRINT HEX(c2)
        PRINT HEX(c3)
        PRINT HEX(c4)
    ENDIF

How to compile and run the example

The instructions here refer to compiling the example from the command line. For Microsoft Windows users we suggest using UGBASIC-IDE, which allows you to download and compile each single example with just one click.



Are instructions for your specific home computer / console missing? First of all, check if your computer is supported by clicking here. If so, since ugBASIC is a language which does not provide abstractions, it is possible that this example will not work on your target. If you think this is an issue, please click here.

Any problem?

If you have found a problem trying to run this example, if you think there is a bug or, more simply, you would like it to be improved, open an issue for this example on GitHub.
Thank you!

open an issue BACK TO EXAMPLES