Giter Site home page Giter Site logo

Contains point about mechanics HOT 2 OPEN

angelsolaorbaiceta avatar angelsolaorbaiceta commented on May 28, 2024
Contains point

from mechanics.

Comments (2)

angelsolaorbaiceta avatar angelsolaorbaiceta commented on May 28, 2024

Hi there!

Thanks a lot for your kind words. Happy to hear you're enjoying the book.

The case you're describing should definitely work; there might be a bug somewhere in the code.

Would you be so nice as to include a small snippet of code that reproduces the error you describe? I'm currently out from home without a laptop to work, but as soon as I get back I'll take a look at this.

Best,
รngel

from mechanics.

kylepritchard avatar kylepritchard commented on May 28, 2024

Hi,

I looked a little more today when time allowed and I was slightly wrong about the square/rectangle issue. The only issue I see is with the way the points of the polygon are listed. In my testing the polygon points were added moving clockwise through the polygon hence the angles always ended up negative which yields a failure as the test case is limited to positive angles. I'm not sure if it is conventional to list the points in counter-clockwise manner or if the algorithm should take that into account by checking the absolute value of the angle sum? I modified the test file slightly to illustrate the case.

class TestPolygon(unittest.TestCase):
    vertices = [
        Point(0, 0),
        Point(30, 0),
        Point(0, 30),
    ]

    polygon_1 = Polygon(vertices)

    def test_contains_point_polygon_1(self):
        point = Point(10, 10)
        self.assertTrue(self.polygon_1.contains_point(point))

    vertices_2 = [
        Point(0, 0),
        Point(0, 30),
        Point(30, 0),
    ]

    polygon_2 = Polygon(vertices_2)

    def test_contains_point_polygon_2(self):
        point = Point(10, 10)
        self.assertTrue(self.polygon_2.contains_point(point))  <== Fails (FALSE)

The test will fail on polygon_2 which is the same polygon with the points listed in reverse order.

from mechanics.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.