Initial circuits plugin work.

This commit is contained in:
jmsgrogan 2023-01-20 16:47:39 +00:00
parent b5f21900eb
commit f8a2ce3c59
50 changed files with 1451 additions and 97 deletions

View file

@ -4,7 +4,6 @@
#include "Vector.h"
#include <memory>
#include <vector>
class Transform;
@ -19,7 +18,7 @@ public:
~Point();
static std::shared_ptr<Point> Create(double x, double y, double z = 0);
static std::unique_ptr<Point> Create(double x, double y, double z = 0);
void apply(const Transform& transform);