Skip to content

Instantly share code, notes, and snippets.

View ske2004's full-sized avatar
💠
hello

ske ske2004

💠
hello
View GitHub Profile
@ske2004
ske2004 / main.cpp
Created October 20, 2018 21:36
Bresenham's line algorithm
// Example program
#include <iostream>
#include <string>
#include <cmath>
char buf[32][32];
void clearBuf()
{
for (int i = 0; i < 32; i++)
// Example program
#include <iostream>
#include <cmath>
#include <ctime>
#define SIZE 3
int parker[SIZE][SIZE];
int sumsY[SIZE];
// Example program
#include <iostream>
#include <cmath>
#include <chrono>
int main()
{
float test;