Ray-casting algorithm: Difference between revisions

m (Correct position of D)
Line 985:
end program Pointpoly</lang>
 
=={{header|freebasicFreeBASIC}}==
Inpolygon by Winding number method
<lang freebasicFreeBASIC> Type Point
 
Type Point
As Single x,y
End Type
Line 1,142 ⟶ 1,140:
(10,10) out
</pre>
 
 
=={{header|Go}}==
Anonymous user