#pragma once
enum PtBoundaryRelation {
Inside = 1,
OnBoundary,
Outside = -1
};
bool isEqual(double a, double b) {
// TODO
return a == b; }