blob: 2e96bf367c5f6d5197c5450cecf29dc7c9203ad4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef SEEN_NR_CONVEX_HULL_FNS_H
#define SEEN_NR_CONVEX_HULL_FNS_H
/* ex:set et ts=4 sw=4: */
/*
* A class representing the convex hull of a set of points.
*
* Copyright 2004 MenTaLguY <mental@rydia.net>
*
* This code is licensed under the GNU GPL; see COPYING for more information.
*/
#include <libnr/nr-matrix-fns.h>
#include <libnr/nr-convex-hull.h>
namespace NR {
ConvexHull operator*(const Rect &r, const Matrix &m) {
ConvexHull points(r.corner(0));
for ( unsigned i = 1 ; i < 4 ; i++ ) {
points.add(r.corner(i));
}
return points;
}
} /* namespace NR */
#endif
|