Remove unimplemented methods

This commit is contained in:
Marcel Admiraal
2021-10-18 17:58:37 +01:00
parent 62db47a7fb
commit 4d3690eba5
81 changed files with 4 additions and 213 deletions

View File

@ -42,8 +42,6 @@
#include "core/vector.h"
class Geometry {
Geometry();
public:
static real_t get_closest_points_between_segments(const Vector2 &p1, const Vector2 &q1, const Vector2 &p2, const Vector2 &q2, Vector2 &c1, Vector2 &c2) {
Vector2 d1 = q1 - p1; // Direction vector of segment S1.