Revision history of "Half-plane Intersection"

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:54, 11 March 2018Ultmaster talk contribs 1,978 bytes +1,978 Created page with "<syntaxhighlight lang='cpp'> struct Line { PT p, v; double ang; Line() {} Line(PT from, PT to) : p(from), v(to - from) { ang = atan2(v.y, v.x); } friend b..."