GithubHelp home page GithubHelp logo

Interpolation for Vertex about pymcubes HOT 1 CLOSED

pmneila avatar pmneila commented on September 16, 2024
Interpolation for Vertex

from pymcubes.

Comments (1)

pmneila avatar pmneila commented on September 16, 2024

Hi @denghilbert,

There is a typo in your code 😅. You are defining two different arrays, field and init, but then you use only field when calling marching_cubes. The fixed code works as expected:

field = np.ones([2, 2, 2]) + 99
field[0][0][0] = 0

vertices1, triangles1 = mcubes.marching_cubes(field, 50)

# Change `init` to `field`
field = np.ones([2, 2, 2]) + 99
field[0][0][0] = 40

vertices2, triangles2 = mcubes.marching_cubes(field, 50)

Output:

In [11]: vertices1
Out[11]:
array([[0.5, 0. , 0. ],
       [0. , 0.5, 0. ],
       [0. , 0. , 0.5]])

In [12]: vertices2
Out[12]:
array([[0.16666667, 0.        , 0.        ],
       [0.        , 0.16666667, 0.        ],
       [0.        , 0.        , 0.16666667]])

Hope that helps.

Best!

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.