Code Monkey home page Code Monkey logo

Comments (5)

mikedh avatar mikedh commented on June 24, 2024

Hey, I think you want slice.polygons_full[0].area or sum(p.area for p in slice.polygons_full)

from trimesh.

omaralvarez avatar omaralvarez commented on June 24, 2024

Amazing, I will test it out and see if it works!! Thanks a lot!

from trimesh.

omaralvarez avatar omaralvarez commented on June 24, 2024

I'm getting the following error:

AttributeError: 'Path3D' object has no attribute 'polygons_full'

from trimesh.

mikedh avatar mikedh commented on June 24, 2024

Ah you have to move it to a plane from 3D:

In [14]: m = trimesh.creation.box()

In [15]: s = m.section(plane_origin=m.center_mass, plane_normal=[0,0,1])

In [17]: sum(p.area for p in s.to_planar()[0].polygons_full)
Out[17]: 1.0

from trimesh.

omaralvarez avatar omaralvarez commented on June 24, 2024

Works like a charm, just for refererence I ended up with:

slice = mesh.section(
    plane_normal=n,
    plane_origin=p,
)
if slice is not None:
    area = sum(p.area for p in slice.to_planar()[0].polygons_full)
else:
    area = 0.0

If plane does not intersect you get None and it errors out.

Thanks a lot for the help!

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.