Skip to content

Instantly share code, notes, and snippets.

View GermanHoyos's full-sized avatar
😋
Coding!

German Adrian Hoyos GermanHoyos

😋
Coding!
View GitHub Profile
@GermanHoyos
GermanHoyos / ReArrangeScores.cpp
Created January 13, 2022 01:25
Use arrays to re arrange scores highest to lowest in C++
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
#include <sstream>
@GermanHoyos
GermanHoyos / DynamicArrays.cpp
Created January 13, 2022 01:27
Use a dynamic array to sort information in C++
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
using namespace std;
@GermanHoyos
GermanHoyos / UnitCircle.js
Created February 22, 2022 00:27
Starter code for displaying a unit circle in html canvas
console.log("Base_Unit_Circle");
var canvas = document.querySelector("canvas");
var c = canvas.getContext('2d');
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
let up = false;
let down = false;
let left = false;
//https://x.com/EvangelizerH
/********************
** **
** Experiment to **
** learn OpenGL **
** and 6dof maths **
** German A Hoyos **
** **
********************/
#include "include/MasterHeader.h"