This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * raylib-lines.c | |
| * | |
| * To compile: | |
| * clang -Wall $(pkg-config --cflags raylib) -o raylib-lines raylib-lines.c $(pkg-config --libs raylib) | |
| * | |
| * Copyright (C) 2022 Marco Pantaleoni. | |
| */ | |
| #include <time.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <pthread.h> | |
| #include <time.h> | |
| // Data la definizione di prodotto scalare | |
| // tra vettori enunciata qui sopra, | |
| // scrivere un programma single-threaded | |
| // che calcoli il prodotto scalare tra | |
| // due vettori di double di grande |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * for an intro to the Mandelbrot set: | |
| * - https://simple.wikipedia.org/wiki/Mandelbrot_set | |
| * | |
| * for ppm format, see: | |
| * - http://netpbm.sourceforge.net/doc/ppm.html | |
| * | |
| * install ImageMagick: | |
| * debian/ubuntu: apt-get install imagemagick | |
| * macos: brew install imagemagick |
OlderNewer