Loading...
Searching...
No Matches
3#include "software/geom/circle.h"
4#include "software/geom/polygon.h"
5#include "software/geom/ray.h"
6#include "software/geom/segment.h"
7#include "software/geom/stadium.h"
35bool intersects(
const Polygon &first,
const Ray &second);
36bool intersects(
const Ray &first,
const Polygon &second);
55bool intersects(
const Circle &first,
const Circle &second);
85bool intersects(
const Ray &first,
const Segment &second);
86bool intersects(
const Segment &first,
const Ray &second);
95bool intersects(
const Stadium &first,
const Ray &second);
96bool intersects(
const Ray &first,
const Stadium &second);