First opengl/x11/window integration.

This commit is contained in:
James Grogan 2022-11-14 13:07:11 +00:00
parent 7c6a92f4ec
commit cea3d2c39f
30 changed files with 254 additions and 72 deletions

View file

@ -1,5 +1,7 @@
#pragma once
#include "DiscretePoint.h"
#include <memory>
#include <cmath>
@ -9,6 +11,8 @@ public:
Point(double x, double y);
Point(const DiscretePoint& point);
Point(const Point& reference, double offSetX, double offSetY);
~Point();