Git Product home page Git Product logo

Comments (4)

Mugen87 avatar Mugen87 commented on May 27, 2024

Yes, the current nomenclature is a bit confusing. The edges of a polygon are defined in CCW order where HalfEdge.vertex represents the head or destination vertex of the respective (full) edge. So considering you are standing inside the polygon and look outside, the left/right vertices of a portal edge are twisted. It's correct if you look from outside the polygon onto the edge.

When I remember correctly we did this because the algorithm in Corridor expects this kind of definition. If you change the code in Polygon.getPortalEdgeTo() to

portalEdge.left = edge.vertex;
portalEdge.right = edge.prev.vertex;

the result of Corridor is not correct anymore. So this class needs a fix too.

Additionally, maybe getPortalEdgeTo is not very useful generally, and maybe it should just be something more generic like getEdgeTo():HalfEdge, since it appears getPortalEdgeTo is only used by Navmesh and may be better off being used within NavMesh class only instead.

Let me think about this one a bit^^. Right now, it seems shifting the method to NavMesh is the most clear solution.

from yuka.

Mugen87 avatar Mugen87 commented on May 27, 2024

Right now, it seems shifting the method to NavMesh is the most clear solution.

Done! 91f7367

from yuka.

Mugen87 avatar Mugen87 commented on May 27, 2024

Perhaps, you should document about the portal data structure and what is "right"/"left" exactly according to certain conventions and make it consistent.

Added some comments via 774d48c. Things should be hopefully more clear now.

from yuka.

Mugen87 avatar Mugen87 commented on May 27, 2024

@Glidias Thanks for your valuable feedback! 👍

from yuka.

Related Issues (20)

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.