Skip to main content

A python wrapper around a subset of the ncollide rust library

Project description

https://img.shields.io/pypi/v/ncollpyde.svg Actions Status Documentation Status https://img.shields.io/badge/code%20style-black-000000.svg

A python library for spatial queries of points and line segments with meshes. ncollpyde wraps around a subset of the parry rust library (formerly its predecessor ncollide).

Install

pip install ncollpyde

Pre-built wheels are available for Linux, MacOS, and Windows. If you have a stable rust compiler, you should also be able to install from source.

Features

  • Checking whether points are inside a volume defined by a triangular mesh

  • Checking the intersection of line segments with the mesh

  • Get the (signed) distance from points to the boundary of a mesh

Usage

This library implements most of its functionality through the Volume class, instantiated from an array of vertices, and an array of triangles as indices into the vertex array.

# get an array of vertices and triangles which refer to those points
import meshio
mesh = meshio.read("meshes/teapot.stl")

# use this library
from ncollpyde import Volume

volume = Volume(mesh.points, mesh.cells_dict["triangle"])

# or, for convenience
volume = Volume.from_meshio(mesh)

# containment checks: singular and multiple
assert [-2.30, -4.15,  1.90] in volume
assert np.array_equal(
    volume.contains(
        [
            [-2.30, -4.15, 1.90],
            [-0.35, -0.51, 7.61],
        ]
    ),
    [True, False]
)

# line segment intersection
seg_idxs, intersections, is_backface = volume.intersections(
    [[-10, -10, -10], [0, 0, 3], [10, 10, 10]],
    [[0, 0, 3], [10, 10, 10], [20, 20, 20]],
)
assert np.array_equal(seg_idxs, [0, 1])  # idx 2 does not intersect
assert np.array_equal(seg_idxs, [0, 1])
assert np.allclose(
    intersections,
    [
        [-2.23347309, -2.23347309, 0.09648498],
        [ 3.36591285, 3.36591285, 5.356139],
    ],
)
assert np.array_equal(
    is_backface,
    [False, True],
)

# distance from boundary (negative means internal)
assert np.array_equal(
    volume.distance([[10, 10, 10], [0, 0, 3]]),
    [10.08592464, -2.99951118],
)

See the API docs for more advanced usage.

Known issues

  • Performance gains for multi-threaded queries are underwhelming, especially for ray intersections: see this issue

  • Very rare false positives for containment
    • Due to a bug in the underlying library

    • Only happens when the point is outside the mesh and fires a ray which touches a single edge or vertex of the mesh.

    • Also affects is_backface result for ray intersection checks

  • manylinux-compatible wheels are built on CI but not necessarily in your local environment. Always allow CI to deploy the wheels.

  • If you are installing from a source distribution rather than a wheel, you need a compatible rust toolchain

  • Meshes with >= ~4.3bn vertices are not supported, as the underlying library uses u32 to address them. This is probably not a problem at time of writing; such a mesh would take up hundreds of GB of RAM to operate on.

ncollpyde v0.11 was the last to support meshio < 4.0.

Acknowledgements

Thanks to top users Philipp Schlegel (check out navis!) and Nik Drummond for their help in debugging and expanding ncollpyde ‘s functionality.

Thanks also to pyo3/ maturin developers @konstin and @messense for taking an interest in the project and helping along the way.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ncollpyde-0.19.0.tar.gz (262.2 kB view details)

Uploaded Source

Built Distributions

ncollpyde-0.19.0-cp36-abi3-win_amd64.whl (240.2 kB view details)

Uploaded CPython 3.6+ Windows x86-64

ncollpyde-0.19.0-cp36-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.whl (316.1 kB view details)

Uploaded CPython 3.6+ manylinux: glibc 2.5+ x86-64

ncollpyde-0.19.0-cp36-abi3-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (540.1 kB view details)

Uploaded CPython 3.6+ macOS 10.9+ universal2 (ARM64, x86-64) macOS 10.9+ x86-64 macOS 11.0+ ARM64

File details

Details for the file ncollpyde-0.19.0.tar.gz.

File metadata

  • Download URL: ncollpyde-0.19.0.tar.gz
  • Upload date:
  • Size: 262.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/0.12.12

File hashes

Hashes for ncollpyde-0.19.0.tar.gz
Algorithm Hash digest
SHA256 c37db9c8602075c71446716649e1818a3316bf1803cfde4d9b6a7fdbecc8899e
MD5 46028d5fb2a7ff323a3d49f5aac8e7f2
BLAKE2b-256 456cfcbdd0bb2e29b5745adf4248f98cb1c54008f15a78c9a7ce305bb50401b8

See more details on using hashes here.

File details

Details for the file ncollpyde-0.19.0-cp36-abi3-win_amd64.whl.

File metadata

File hashes

Hashes for ncollpyde-0.19.0-cp36-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 061a8c443c431d9f7497f3a7ee6bbb07ca10694f561c6afb0ab2a5669fc4845b
MD5 e4caf0b08c954e8559002dfe7f2d1a3d
BLAKE2b-256 18c4f81dd1b9afe6374cd5bd1c36fc2aa8679c7d12c9d98d99465242dc8bc866

See more details on using hashes here.

File details

Details for the file ncollpyde-0.19.0-cp36-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for ncollpyde-0.19.0-cp36-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 44dcf09e1bf1182545028f4fe9ced92cca876312e8880b6b722bf28b1dca0098
MD5 cb0d8105d5ca47e3b45d04425428eae2
BLAKE2b-256 ecc62cf06a369079717b948e53940404a62f2d2408cd8d5424ff9e876b0213c0

See more details on using hashes here.

File details

Details for the file ncollpyde-0.19.0-cp36-abi3-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for ncollpyde-0.19.0-cp36-abi3-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 e00d12ac0e682b5700a432f55eff392ab885aa29927e4d7a786fd40e2b58c6a6
MD5 d4a2e84a28de36a5c5e7960eaba81c7d
BLAKE2b-256 75a3b89736d889380317d575e1183d4f611821ebbcaca0b15617850a3431939c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page