Giter VIP home page Giter VIP logo

Comments (2)

pmneila avatar pmneila commented on August 25, 2024 1

Hi,

It should be

u = -((X-15)**2 + (Y-15)**2 + (Z-15)**2 - 8**2)

Note that PyMCubes does not compute normals, as they can be computed in a post-processing step. The surface computed by PyMCubes is (or should be) agnostic to the sign of the distance function.

Following the standard approach of computing normals assuming counter-clockwise order of vertices, it is true that normals will point inwards or outwards depending on the sign of the distance function. This is, however, beyond the scope of this library (at least until normal computation is implemented inside PyMCubes). On top of that, whether the normals of a surface should point inwards or outwards is application-dependent, not an inherent property of the surface itself.

In any case, given that this is causing some confusion, I will update the example with an explanation about surface orientation in the next version.

Hope that clarifies the issue.

Best

from pymcubes.

ajh123 avatar ajh123 commented on August 25, 2024

I think the first example creates a sphere with the surface normals pointing the wrong way. The definition should be:

u = -((X-15)**2 + (Y-15)**2 + (Z-15)2 - 82)

I do agree but, Python 3.10.2 gives this error:

    u = -((X-15)**2 + (Y-15)**2 + (Z-15)2 - 82)
          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?

from pymcubes.

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.