Code Monkey home page Code Monkey logo

Comments (4)

mikedh avatar mikedh commented on May 28, 2024

Hey- the error you're getting is because the plane doesn't intersect the mesh. Rather than returning an empty Path3D object, a ValueError is raised. You can catch and ignore it by wrapping the section call in a try/except block:

    sections  = []

    for z in np.append(z_levels, 1000):
        # this will return a Path3D object, each of which will                    
        # have curves in 3D space                                                 
    try:
            sections.append(mesh.section(plane_origin = [0,0,z],
                                         plane_normal = [0,0,1]))
    except ValueError:
            print('Plane doesn\'t intersect mesh at {}'.format(z))

from trimesh.

Hansalena avatar Hansalena commented on May 28, 2024

Dear Michael,

thank you so much !

section.py works now for all the three direction ( x, y, z) .

I'm still in trouble to use correctly *trimesh/intersections.py .
*

Do you have an example how to use intersections.py.

Thank you very much.

Best regards

Johann*
*

**

Johann Kindlein MSc

Dorfstr. 145 a
21365 Adendorf
Germany

Tel: +4941317572040
Fax: +4941317574293

Am 13.10.2016 um 02:47 schrieb Michael Dawson-Haggerty:

Hey- the error you're getting is because the plane doesn't intersect
the mesh. Rather than returning an empty Path3D object, a ValueError
is raised. You can catch and ignore it by wrapping the section call in
a try/except block:

|sections = [] for z in np.append(z_levels, 1000): # this will return a
Path3D object, each of which will # have curves in 3D space try:
sections.append(mesh.section(plane_origin = [0,0,z], plane_normal =
[0,0,1])) except ValueError: print('Plane doesn't intersect mesh at
{}'.format(z)) |


You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
#36 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AKw6eNmJU1cxUF3vhL6SVQsJoatHEZwRks5qzX-zgaJpZM4KUwrm.

from trimesh.

mikedh avatar mikedh commented on May 28, 2024

Hey Johann, glad its working for you. trimesh.intersections is just the module where the actual function doing the cross section lives, so using that would be exactly the same as doing mesh.section. I'm going to update the example and close this for now.

from trimesh.

Hansalena avatar Hansalena commented on May 28, 2024

Dear Michael,

please see attached the intersection lines for a anatomical surface.

The mesh lines at one intersection level are composed from multiple
lines ( with the end points).

Could you please help still with one point.

How I can get access to the points ( endpoints ) of the multiple lines
of a section.

I tryid different ways without success.

Thank you in advance.

Best regards

Johann

Johann Kindlein MSc

Dorfstr. 145 a
21365 Adendorf
Germany

Tel: +4941317572040
Fax: +4941317574293

Am 14.10.2016 um 04:48 schrieb Michael Dawson-Haggerty:

Hey Johann, glad its working for you. trimesh.intersections is just
the module where the actual function doing the cross section lives, so
using that would be exactly the same as doing mesh.section. I'm going
to update the example and close this for now.


You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
#36 (comment),
or mute the thread
https://github.com/notifications/unsubscribe-auth/AKw6eKmBhbLFQ0Hm1Xp3ZDF2EYQdE_i0ks5qzu2CgaJpZM4KUwrm.

from trimesh.

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.