Skip to main content

Construct isolines/isosurfaces over a 2D/3D scalar field defined by a function (not a uniform grid)

Project description

Isosurfaces

Construct isolines/isosurfaces of a 2D/3D scalar field defined by a function, i.e. curves over which f(x,y)=0 or surfaces over which f(x,y,z)=0. Most similar libraries use marching squares or similar over a uniform grid, but this uses a quadtree to avoid wasting time sampling many far from the implicit surface.

This library is based on the approach described in Manson, Josiah, and Scott Schaefer. "Isosurfaces over simplicial partitions of multiresolution grids." Computer Graphics Forum. Vol. 29. No. 2. Oxford, UK: Blackwell Publishing Ltd, 2010.

An example graph, including quad lines, of y(x-y)^2 = 4x+8 (Python expression: y*(x-y)**2 - 4*x - 8)

Demo with grid lines

Installation

pip3 install isosurfaces

Usage

from isosurfaces import plot_isoline
import numpy as np

def f(x, y):
    return y * (x - y) ** 2 - 4 * x - 8

curves = plot_isoline(
    lambda u: f(u[0], u[1]),
    np.array([-8, -6]),
    np.array([8, 6]),
    # Increasing min_depth can help if you have small features
    min_depth=3,
    # Ensure max_quads is more than 4**min_depth to capture details better
    # than a 2**min_depth by 2**min_depth uniform grid
    max_quads=1000,
)

for curve in curves:
    print(', '.join(f"({p[0]:.3f},{p[1]:.3f})" for p in curve))

Dev examples

python3 isoline_demo.py && xdg-open out/demo.svg
manim -pql isosurface_demo.py --renderer=opengl --enable_gui

Pyflakes, allowing manim star imports

python3 -m pyflakes . | grep -v "star imports: manim"

Build source archive and wheel:

rm -rf dist build isosurfaces.egg-info
python3 setup.py sdist bdist_wheel
twine check dist/*
# for test:
twine upload --repository-url https://test.pypi.org/legacy/ dist/*
# for actual
twine upload dist/*

Code formatting

isosurfaces uses black and isort. A Github Action will run to make sure it was applied.

Related

Related projects:

Other terms for an isoline:

  • Contour
  • Level curve
  • Topographic map

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

isosurfaces-0.1.2.tar.gz (11.3 kB view details)

Uploaded Source

Built Distribution

isosurfaces-0.1.2-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

File details

Details for the file isosurfaces-0.1.2.tar.gz.

File metadata

  • Download URL: isosurfaces-0.1.2.tar.gz
  • Upload date:
  • Size: 11.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.9

File hashes

Hashes for isosurfaces-0.1.2.tar.gz
Algorithm Hash digest
SHA256 fa51ebe864ea9355b26830e27fdd6a41d5a58b419fa8d4b47e3b8b80718d6e21
MD5 16061f81d60a563b35857c96630415be
BLAKE2b-256 dacfbd7e70bb7b8dfd77afdc79aba8d83afd4a9263f045861cd4ddd34b7f6a12

See more details on using hashes here.

File details

Details for the file isosurfaces-0.1.2-py3-none-any.whl.

File metadata

  • Download URL: isosurfaces-0.1.2-py3-none-any.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.9

File hashes

Hashes for isosurfaces-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 525a49ba93f4dbc35303cd2faf30976af0f99d9274cfa2787aec016b8ef96c64
MD5 32d685f12e3c2dab72a1b74c792772df
BLAKE2b-256 b168d5e9e6e0d6e43107d8393d2ee3d231dbb597bf93052c6f3117b313724980

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