hunk ./spacepart.cabal 42 + Data.SpacePart.Edge hunk ./src/Data/SpacePart/AABB.hs 119 - boundary_points :: s -> [Vertex2 Double] hunk ./src/Data/SpacePart/AABB.hs 145 - boundary_points (Boundary p s) = - [ p - , p ^+^ (0, s) - , p ^+^ (s, s) - , p ^+^ (s, 0) - ] hunk ./src/Data/SpacePart/AABB.hs 148 +boundary_points :: HasBoundary s => s -> [Vertex2 Double] +boundary_points s = boundary_points' $ boundary_square s + where + boundary_points' (Boundary p s) = + [ p + , p ^+^ (0, s) + , p ^+^ (s, s) + , p ^+^ (s, 0) + ] + hunk ./src/Data/SpacePart/QuadTree.hs 47 - boundary_points (QuadTree _ bounds _) = boundary_points bounds hunk ./CHANGELOG 1 + - HasBoundary no longer has boundary_points in the interface. This has a fixed definition for + all instances of HasBoundary. + - Added Data.SpacePart.Edge module + +0.1.0.0