Commit Graph

10 Commits

Author SHA1 Message Date
Derek McQuay 634cd011c0 ran gofmt -s
simplify things after having run gofmt -s
2016-08-29 10:27:36 -07:00
Derek McQuay 71f3aede25 updated IsRect to be public
this will allow users to make sure that the rectangles they define
really are rectangles
2016-08-27 22:27:51 -07:00
Derek McQuay f88623a1e0 adding corrections for spelling and golint 2016-08-27 21:32:18 -07:00
Derek McQuay ecc870943e added documentation for all functions 2016-08-27 21:14:16 -07:00
Derek McQuay 9b908a8db1 changed permission on func and added maximum error
made sure that not all functions were public and changed some to private
that need not be exposed.

also added in maximum error to deal with floating point inaccuracies
2016-08-27 20:46:32 -07:00
Derek McQuay d1b383fb45 intersection now works
returns []Point of intersection point(s)
2016-08-27 18:55:51 -07:00
Derek McQuay aaf2dbb2eb implemented adjacency and tests
using the new line type am able to check if lines overlap or not.
2016-08-26 16:27:47 -07:00
Derek McQuay 69aff8a038 added function to test containment
Containment uses the sumOfTri to determine if a point is inside of the
rectangle, r1.  It checks all four points of r2 (p1, p2, p3, p4) against
r1.  If they are all inside, then the rectangle is contained.
2016-08-26 13:48:26 -07:00
Derek McQuay fc4c1c820b determine size of rectangle
To determine the size of rectangle, it was required to be able to
determine who would be the neighboring points.  A neighbor is a point
that would make the exterior of the rectangle, not the cross-section.
Finding the neighbors allows for a simple l*w to calculate size.
2016-08-26 11:37:55 -07:00
Derek McQuay b5a9726d2d created rectangle struct and IsRect()
defined what a rectangle is and also implemented IsRect(), which returns
a bool whether the coordinates given make a rectangle or not.  Tests
were written for IsRect()
2016-08-26 09:08:30 -07:00