Tuesday, 7 April 2026
Python
PROCESSING
Processing is an open-source programming language and integrated development environment based on Java, used as a medium for teaching and creating multimedia and interactive digital design projects. It is developed by artists and designers as an alternative tool to proprietary software.
Processing es un lenguaje de programación y entorno de desarrollo integrado de código abierto basado en Java, que sirve como medio para la enseñanza y producción de proyectos multimedia e interactivos de diseño digital. Es desarrollado por artistas y diseñadores como una herramienta alternativa al software propietario.
PIXELS AND COLORS
Computer screens are made up of a matrix of dots that we call PIXELS. The more pixels a screen or digital image has, the higher its resolution. Each pixel can have a different color, which is a combination of three components: RED (R), GREEN (G), and BLUE (B). This is the RGB code, which expresses each component as a number between 0 and 255.
Thus, 0,0,0 is black and 255,255,255 is white.
COORDINATES
The coordinate origin (0,0) on a computer screen is the top-left corner. Each pixel has two coordinates (x, y) to indicate its position on the screen.
The x coordinate (width) is the horizontal distance from the left edge of the screen, and
The y coordinate (height) is the vertical distance from the top edge of the screen.
WINDOW SIZE
You can define the size of the window where you run the program with the command size(x,y);
x = width y=height
URL to download the program: https://processing.org/
You can download processing-4.3.3. for windows x64 here (you dont need to install anything only run the exe file)







