Thunderbots Project
Loading...
Searching...
No Matches
collinear.h
1#pragma once
2
3#include "software/geom/geom_constants.h"
4#include "software/geom/point.h"
5#include "software/geom/segment.h"
6
14bool collinear(const Point &a, const Point &b, const Point &c);
15
28bool collinear(const Segment &segment1, const Segment &segment2);
Definition point.h:14
Definition segment.h:7