Ben Horner

Results 2 issues of Ben Horner

In section 3.2.6, in the second code section the GLSL for the fragment shader: ``` varying vec4 v_color; void main() { gl_FragColor = color; } ``` I think it should...

For some reason the implementation of Line2D.intersection(Line2D) is using a LineSegment2D here: https://github.com/dlegland/javaGeom/blob/master/src/main/java/math/geom2d/line/Line2D.java#L345 Then when the AbstractLine2D.instersect method takes over, it correctly finds the intersection, but then it checks LineSegment2D.contains(),...