JuliaGeometry / GeometricalPredicates.jl

Fast and robust 2D & 3D incircle/intriangle/etc. for Julia
Other
57 stars 14 forks source link

incricle for zero oriented primitives #1

Closed skariel closed 10 years ago

skariel commented 10 years ago
a = Point(1.1, 1.1)
b = Point(1.2, 1.2)
c = Point(1.3, 1.3)
mytriangle = Primitive(a, b, c)
incircle(mytriangle, Point(1.25, 1.25))

gives 2, should give 0

skariel commented 10 years ago

fixed in latest commit!