Skip to content

Instantly share code, notes, and snippets.

@geniiii
geniiii / graphingCalc.cpp
Last active November 12, 2019 14:40 — forked from oatmealine/graphingCalc.cpp
simple graphing calculator in c++ - edit line 27 and 28
#include <chrono>
#include <cmath>
#include <iostream>
#include <string>
#include <vector>
constexpr uint32_t LENGTH = 120;
constexpr int HEIGHT = 28;
using Duration =