Determine if two triangles overlap: Difference between revisions

Content added Content deleted
(Added Algol 68 using the Check if two polygons overlap code.)
m (→‎{{header|Wren}}: Minor tidy)
Line 6,736: Line 6,736:
{{trans|Kotlin}}
{{trans|Kotlin}}
{{libheader|Wren-dynamic}}
{{libheader|Wren-dynamic}}
<syntaxhighlight lang="ecmascript">import "/dynamic" for Tuple, Struct
<syntaxhighlight lang="wren">import "./dynamic" for Tuple, Struct


var Point = Tuple.create("Point", ["x", "y"])
var Point = Tuple.create("Point", ["x", "y"])