Measurement: moving arrow-drawing functions from frontend to the backend (2/4)

This commit is contained in:
Lukas Matena 2022-09-29 12:33:20 +02:00 committed by enricoturri1966
parent 9658c8c677
commit 8af3e5823a
3 changed files with 36 additions and 2 deletions

View file

@ -90,7 +90,7 @@ static Vec3d edge_direction(const Edge& e)
/*
// returns: distance, 1st vertex, 2nd vertex
// returns: distance, 1st vertex, 2nd vertexs
static std::tuple<double, Vec3d, Vec3d> distance_edge_edge(const Edge& e1, const Edge& e2)
{
std::vector<std::tuple<double, Vec3d, Vec3d>> distances;