Revision history of "Convex Hull"

Jump to navigation Jump to search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 00:52, 11 March 2018Ultmaster talk contribs 1,785 bytes +1,785 Created page with "<syntaxhighlight lang='cpp'> ld area2(PT a, PT b, PT c) { return cross(a,b) + cross(b,c) + cross(c,a); } #ifdef REMOVE_REDUNDANT // return true if point b is between points..."