Skip to main content

Polyscope: A viewer and user interface for 3D data.

Project description

Polyscope's documentation is hosted at polyscope.run

To contribute, check out the instructions here.

Polyscope

actions status linux actions status macOS actions status windows PyPI

Polyscope is a C++/Python viewer and user interface for 3D data such as meshes and point clouds. It allows you to register your data and quickly generate informative and beautiful visualizations, either programmatically or via a dynamic GUI. Polyscope is designed to be lightweight---it does not "take ownership" over your entire program, and it is easy to integrate with existing codebases and popular libraries. The lofty objective of Polyscope is to offer a useful visual interface to your data via a single line of code.

Polyscope uses a paradigm of structures and quantities. A structure is a geometric object in the scene, such as a surface mesh or point cloud. A quantity is data associated with a structure, such as a scalar function or a vector field.

When any of these structures and quantities are registered, Polyscope displays them in an interactive 3D scene, handling boilerplate concerns such as toggling visibility, color-mapping data and adjusting maps, "picking" to click in the scene and query numerical quantities, etc.

C++:

#include "polyscope/polyscope.h"
#include "polyscope/surface_mesh.h"

// Initialize polyscope
polyscope::init();

// Register a point cloud
// `points` is a Nx3 array-like container of points
polyscope::registerPointCloud("my points", points)

// Register a surface mesh structure
// `meshVerts` is a Vx3 array-like container of vertex positions
// `meshFaces` is a Fx3 array-like container of face indices  
polyscope::registerSurfaceMesh("my mesh", meshVerts, meshFaces);

// Add a scalar and a vector function defined on the mesh
// `scalarQuantity` is a length V array-like container of values
// `vectorQuantity` is an Fx3 array-like container of vectors per face
polyscope::getSurfaceMesh("my mesh")->addVertexScalarQuantity("my_scalar", scalarQuantity);
polyscope::getSurfaceMesh("my mesh")->addFaceVectorQuantity("my_vector", vectorQuantity);

// View the point cloud and mesh we just registered in the 3D UI
polyscope::show();

Python:

import polyscope as ps

# Initialize polyscope
ps.init()

### Register a point cloud
# `my_points` is a Nx3 numpy array
ps.register_point_cloud("my points", my_points)

### Register a mesh
# `verts` is a Nx3 numpy array of vertex positions
# `faces` is a Fx3 array of indices, or a nested list
ps.register_surface_mesh("my mesh", verts, faces, smooth_shade=True)

# Add a scalar function and a vector function defined on the mesh
# vertex_scalar is a length V numpy array of values
# face_vectors is an Fx3 array of vectors per face
ps.get_surface_mesh("my mesh").add_scalar_quantity("my_scalar", 
        vertex_scalar, defined_on='vertices', cmap='blues')
ps.get_surface_mesh("my mesh").add_vector_quantity("my_vector", 
        face_vectors, defined_on='faces', color=(0.2, 0.5, 0.5))

# View the point cloud and mesh we just registered in the 3D UI
ps.show()

Polyscope is designed to make your life easier. It is simple to build, and fewer than 10 lines of code should be sufficient to start visualizing. In C++, some template magic means Polyscope can probably accept the data types you're already using!


Author: Nicholas Sharp

If Polyscope contributes to an academic publication, cite it as:

@misc{polyscope,
  title = {Polyscope},
  author = {Nicholas Sharp and others},
  note = {www.polyscope.run},
  year = {2019}
}

Development of this software was funded in part by NSF Award 1717320, an NSF graduate research fellowship, and gifts from Adobe Research and Autodesk, Inc.

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

polyscope-1.3.4.tar.gz (7.7 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

polyscope-1.3.4-pp39-pypy39_pp73-win_amd64.whl (2.3 MB view details)

Uploaded PyPyWindows x86-64

polyscope-1.3.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polyscope-1.3.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polyscope-1.3.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

polyscope-1.3.4-pp38-pypy38_pp73-win_amd64.whl (2.3 MB view details)

Uploaded PyPyWindows x86-64

polyscope-1.3.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polyscope-1.3.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polyscope-1.3.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

polyscope-1.3.4-pp37-pypy37_pp73-win_amd64.whl (2.3 MB view details)

Uploaded PyPyWindows x86-64

polyscope-1.3.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polyscope-1.3.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polyscope-1.3.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

polyscope-1.3.4-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

polyscope-1.3.4-cp311-cp311-win32.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86

polyscope-1.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

polyscope-1.3.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

polyscope-1.3.4-cp311-cp311-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

polyscope-1.3.4-cp311-cp311-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

polyscope-1.3.4-cp311-cp311-macosx_10_9_universal2.whl (5.3 MB view details)

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

polyscope-1.3.4-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

polyscope-1.3.4-cp310-cp310-win32.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86

polyscope-1.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

polyscope-1.3.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

polyscope-1.3.4-cp310-cp310-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

polyscope-1.3.4-cp310-cp310-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

polyscope-1.3.4-cp310-cp310-macosx_10_9_universal2.whl (5.3 MB view details)

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

polyscope-1.3.4-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

polyscope-1.3.4-cp39-cp39-win32.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86

polyscope-1.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

polyscope-1.3.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

polyscope-1.3.4-cp39-cp39-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

polyscope-1.3.4-cp39-cp39-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

polyscope-1.3.4-cp39-cp39-macosx_10_9_universal2.whl (5.3 MB view details)

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

polyscope-1.3.4-cp38-cp38-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.8Windows x86-64

polyscope-1.3.4-cp38-cp38-win32.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86

polyscope-1.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

polyscope-1.3.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

polyscope-1.3.4-cp38-cp38-macosx_11_0_arm64.whl (2.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

polyscope-1.3.4-cp38-cp38-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

polyscope-1.3.4-cp38-cp38-macosx_10_9_universal2.whl (5.3 MB view details)

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

polyscope-1.3.4-cp37-cp37m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.7mWindows x86-64

polyscope-1.3.4-cp37-cp37m-win32.whl (2.2 MB view details)

Uploaded CPython 3.7mWindows x86

polyscope-1.3.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

polyscope-1.3.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

polyscope-1.3.4-cp37-cp37m-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

polyscope-1.3.4-cp36-cp36m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.6mWindows x86-64

polyscope-1.3.4-cp36-cp36m-win32.whl (2.2 MB view details)

Uploaded CPython 3.6mWindows x86

polyscope-1.3.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

polyscope-1.3.4-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (3.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

polyscope-1.3.4-cp36-cp36m-macosx_10_9_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file polyscope-1.3.4.tar.gz.

File metadata

  • Download URL: polyscope-1.3.4.tar.gz
  • Upload date:
  • Size: 7.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4.tar.gz
Algorithm Hash digest
SHA256 91538862845c737676011b7a21f2b7a6a6f34a7b92ca5d9747aa193b676ed0ca
MD5 7c57a920dc5612a3416ab21159e3cdb1
BLAKE2b-256 7093677c1c0e704f6c2106a7ea4650407b791bb9aee8d8dcd306533553408b2e

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5ec5f40664010458cfb32daabc2aca9124f05c7f157ca62a8bb11a00d2b0425a
MD5 806b47d93db4848c00078069f6d4ccef
BLAKE2b-256 e7afdff04183dc868fefe6efddc018b4596e15ef8c45cad5717d1d2763e50509

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f6539f6e4bcbd42dce3191f6a183ee7d7cc1baaa4a5cd2748f5a2f01ee43ae5
MD5 6f6e216e2928c39f163862197ec8e529
BLAKE2b-256 2951207e3baac75f9f72e8d32bb1678bee428ee9afce58ee264f128a587522b7

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9793168c40fb1df38d365653526e72988b973b4d01cde0816b512ee8381d84b6
MD5 8bb43761835e229e5e80cd37d2eaeeb4
BLAKE2b-256 0126ed19a0c2389a58fa9b8de11a4671b34c1b9b1138a78e28c55dcb2d0c7189

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05e0a535bd26e1c8742630e1c5dee5c575d493947d56cc0a1c67b2a6d6046a40
MD5 33c0231d1c89862f5b9024886e3f6f47
BLAKE2b-256 c7ccb611077a24bf00c50f04b065f4e823407eda561b99d42ecde5f4d3b3e5e7

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 31b621cad1a58c58fa27f08111e0d2c0b428e7089b6b1dbfce52e199ac643870
MD5 b7ab061e3310a0c42e5e27c57b914897
BLAKE2b-256 be7089932e58a6590ed98b2c860ec93a1936d47dedbe83266af1715dcf390447

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a092acd57b153ee80b8d2d846431cf5b1efeef1500e595f917431bc056aa906
MD5 087d4aac6a6835fae59b4e3147d30b9c
BLAKE2b-256 0a97652bfaae0e18f11387f06bf3fbbb92612201677cb999cac3ee8c0eee57f9

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76537e520451fdfd33946a98188353a4ba47ff0a3db33018f25a31502c76b938
MD5 52d6bc099e1330026ae0e60d9a5c166f
BLAKE2b-256 39f421338fa59a8d9454fb9c8020c6f5e4de989f2f410ce05a68d1b92c879258

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4f94bbf37208617c3212bc3c284d790693be55c500cfadc88040f58e0ef63ff
MD5 83c9bab77308e807fabd089bbc540736
BLAKE2b-256 e3b4e4af7a80d461b238be0281796c8f25b109bc65e8e90b929ab4d8aca9efbe

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 058331ff361833afdc8d71aed5d59e96c0d1a8fbd76d63cb61462d719efde1e9
MD5 de52cb3f8c6d279ab2d3c2717616e3f3
BLAKE2b-256 f0bbb5e41bdafd10778cb3ba4fc014e75cb4e80a18dd471fd8b5aa8974422770

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7663ca836a70e94a73e9481e80aae14470abaad8e3947744b96de68a6c32b88b
MD5 279c1d08698d3dd36efbbcb92accddbe
BLAKE2b-256 ed520b605de1ba56ecb787e8b22b0c9f6cb9c6ff4d4b6db68bbc8ea563c167dd

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bb93afba70b19256ec023671918cdc6351710c4eb78a07ace6aea5c0cb2986bb
MD5 694db0879756fb07bc92105b5f5db229
BLAKE2b-256 c9fbc66d2c663c26d4d50182b4c1c681f2354e264ff8cf3f2b3842dca85e00fb

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84aed5541c2b20f2852c948261c880c1bce0474237d30ccdb480c5fcc729bcb9
MD5 1dbf01a73a8d9594747454177f58ae87
BLAKE2b-256 7c4b12346f8a547a282a2492de73731f78fbee74ef6f8f0335dcc539787b2493

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: polyscope-1.3.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 904f44d7aaed6872f298d20c5699e36b5d2249dd68e6c937b00a1cec1cb31889
MD5 beaeaf97d6d2e47afbd911a2137cd841
BLAKE2b-256 930f26e42c5d2fba46ec8842047f86ad67a7ec844b7d7fb1c56f56a33536d741

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp311-cp311-win32.whl.

File metadata

  • Download URL: polyscope-1.3.4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7566e8f6e93d59f5879d16c787095b051a2252f73e3e3fb66a27d9652747fac9
MD5 2d129349f03d5bbc05e2ecab9505db37
BLAKE2b-256 7e7bc9d7e8dee502ab1f5851f4c95c094e63fc95b881606c3f55740487f1d71d

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba57d820ae9bcdce4bde9c6c05c958a008b6ec3814e04044c53e0ce645f61f12
MD5 7ecedc5440ab974f42ffcef3ac718d2c
BLAKE2b-256 b9a1d88415cab3ff0fe1f9ff1071051165f4b925f2149392992b4629ca26dbbd

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d602f4c43525cf9d8f44b2395ce14ce8fad6c0f43a150b1b3257de205c0513e8
MD5 94ba469a8434d24087f9ddba64bf0e4a
BLAKE2b-256 218796da80a3022526d6ea5e574adf627ad48d9b9e62de5f14175fe500261514

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f725b77dec27afc1388f2b8dcb5acc637fe476b7a1e1d056931863a1469e0a4
MD5 d4db05b29f687008bb3a5e0e1ec99e8a
BLAKE2b-256 75c6b1bc558ee8552379d2770fe260009804001af3ea17d625fa7c30ea62eb65

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 65f3daf2067f0ac0efdb75f99d2d2aff0b7ea4d19d2a58020beccef20f475ecc
MD5 cba643360d30f98f2cddd9a1143570f4
BLAKE2b-256 0fc73c6c7d66b210bec96ac024e377802c2124b8eeab80000f3cfdec511bf87b

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 58f01dff1f193a04947db0f6a13e3985a1633628eaf6399c765eea2464d4aff0
MD5 1bbbd7b44f2963ceb02dc2026be8a621
BLAKE2b-256 01ae612166bcde427e426a22aba120498ddaa59d27f584c1e3994066b73d6bac

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: polyscope-1.3.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 16cbd82f8379a5e729340844e66e83637d2ac69497f97501f5c8c8870d6bf6bd
MD5 eb9aa630ef9d7ddb68554ef319859a64
BLAKE2b-256 9e2dffe8dd84ad4200d59cc5e2efe2fb1c38101c6c918d01bd568594a1a77450

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp310-cp310-win32.whl.

File metadata

  • Download URL: polyscope-1.3.4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3cb7f784b4ac08c13d466d855f6d38802ea4b9c9db6892c85f787b55ce5f9d13
MD5 3f27905050c7637751d3f2459d63d471
BLAKE2b-256 b4af83b53e862f21ab2802af9597130e977fbdc5e980e2d045bacaff761d77c7

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a183cf511aa1d9473dc05245fd11c1992c689e7edb72d0a903c9452e03c1bd72
MD5 c1dea67ba630301c8ef29f8e73bf3ff9
BLAKE2b-256 9a8d536aa520e414a97d2cf2caaebd5cd35b24e97e952c446b28667c3d1b4b88

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d28d6b7d8fdd9d8e94ea5f4b9c1c9806f91c5ec16facc1f6f8e4b95fb821aaa4
MD5 e702463781a394869c6e14dc5c576507
BLAKE2b-256 13e09f0c94baa786c49c1f37b4c2cc0b5ec5ecf46c86f35fc084b01832fc9da9

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34eb74a529e855c742e82598b4da0286de1a8e676fef1095fb8569604d3aa0e6
MD5 e87040c71d1663dd2834d1a889d758b2
BLAKE2b-256 45eee4d6cff8bcc3c73a3f67a5b54c544e0ad5de83b089502ad60e4ebe1d4739

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 258b1d46c9b77a6bde1461dc4fd95cbb88f3aa058fb805dfcee8109e790931d2
MD5 5c3b5fac8986cf2ca482468164fda662
BLAKE2b-256 91cdbc32fa7c56ba811e15db39017c4862734bbe99fe8a867af283efaf1fff99

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f830c2bac83c2dded8f1b9dc021970c9fefa8c52870f725266f0a7dbae52dedc
MD5 ceadcf1946a4463b4f5aab5deddc7115
BLAKE2b-256 7c21aad6717221530eff5f1f11ddfa87747ced49bce86ddde23b88a5c4947fa3

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: polyscope-1.3.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9820c4597593f13c20db2a2b037d369483b1ee2217b2a62c919b4ae6d2eb5667
MD5 6eda710bd2a5fe8551e9a17cba9ad755
BLAKE2b-256 724f5b6c600a8a38121400688423b66e29973d50ebba2d76af7499f73472615e

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: polyscope-1.3.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 62f2bb6b684d9b582907f0bbee90c2dc9bb89a23dc6140c4cc64e8493b5d7ca8
MD5 3b4c90d283b146013cab82919a591105
BLAKE2b-256 72ec52dfb9f1e8e8d31088f03ea0e1757ae1f18c4db521c4f1e41e81b7dcb8cc

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa4cd53b96d47271b0990ee3f8a84c9e6c0cd67963ebf54c9e634f558af4b3af
MD5 b0ab0d2f311cac3636e093224f7ce644
BLAKE2b-256 46e1840121536836308552d46220e78ea6b71c45c05ea9f70810e53c4ed3eaad

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aeaff4312dfdbd1ae6ffcea95ea158b2486752d504c7eacad532ae6910e169e7
MD5 38a3f52885f27a3a459a78c81741bec3
BLAKE2b-256 1566996cfbaa4ea1615e621912970ae33f4bd32c5af70c8a6da23b74f99cc84a

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 715b0948f4824ace70252ddd301ca1b68f0685daa60a03d2b4a3382edcb467e7
MD5 2857446792a42e280fab93db139c1b5a
BLAKE2b-256 71f7c8483640ee8e315bf7505502c271420a53c5c5fac05d22307c5cdd0fee3f

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 268f3eef825f399ec65ce310b244c9639786cbf0e92aca7398e5fa8c9ce56f61
MD5 a272f8a164e5876c6935301ec9a1ed64
BLAKE2b-256 1cc60e3660753aba0d0a69299ab71275b004214b60a81030b522e09570504ac1

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1afb47f09643237677eb461dfdfb746dc5946d0b9d9d4813bfe4f2cb0cc4cbe5
MD5 4daff2cf8ca88928232ffb90f866f4ab
BLAKE2b-256 71a96560d96f82a56691121807f02a2f052c745c56171ad514dbef237273a57c

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: polyscope-1.3.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b1896dc4efa08430f2cf5a80bbe7f75092f1a6abc325b884f2b7f462e60f61ca
MD5 7bf1ec0bbbd8d9123528313628def43f
BLAKE2b-256 3f4557ee626d6c25e76d67e97e1b254ad11ade5692200a466587f98c7eed7024

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: polyscope-1.3.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7aa729b18941e9f73664c916a793f3449733272313abdf12f809586672e1283d
MD5 54ecf23ec2f07a0c59801d52517f0c90
BLAKE2b-256 70b47fd473b48107462526da87833ed0c2e2a6d86bb824d5e96cc99df2cdcc5d

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5bcb2e6b3bbe9f1be0f6e800fe2f4463069a43db16cf204a9e24d43d98e5138
MD5 889b4738e7f08060b2a762d5619aed2d
BLAKE2b-256 d11c34e99f72a51c1998798b40fb5216006ee8d3cf0dac2cd4386e92f6f30994

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e95f7debc8acac7664b9e21066e411163845be09d929260c11d221ca7ef18c4
MD5 bae8c2d08b2a6302eecb8329f9454df9
BLAKE2b-256 c11e6162062d943126677adb83023137d70bcfd9a37ad8d4d9ddd442255b8774

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bcf19aeb11586fa7721fb799383a916350c68f98cfe6b60ba703766ef89b322
MD5 ca39c6ecb0c75e11bf5a6c9e1afa8809
BLAKE2b-256 32178b766ad5c612f498d17642cdbd866a578184dad7781e23f05e431672d3c6

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0026a167aef569b110453d38f8420de6c636e4bc04286b26f0fa0009f75ed5a5
MD5 1dea7f6a9650147b3f077aefab7de7e0
BLAKE2b-256 49000bf73406ae67e2e5ad437082efea8a85df82e5e4c7fa5ebd2af7843e4f96

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 725ec3d4eda942912f7bde73dbd3ad3f212684004d54337e310312e166d0ee1a
MD5 ea6db3dfcc3215f0927cecb80d2be4f8
BLAKE2b-256 dc7d3ee5281b486551982cb9bc7390e2220abb61f2dc935b3e58e30df3a18cce

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: polyscope-1.3.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 b3477d9080a901a8b52ef36b2828cc182ac369de8d27ccf87d88c21f02999ec9
MD5 4b5d9d1748371a1050a52664dd93051d
BLAKE2b-256 b9ade51c13a10ff60b3529c1a40d509424d306404ae3b92a5357cdcd4aeaa2a2

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: polyscope-1.3.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 563eec01b264f9984d77e923328975c418bbcacc6476d6e2f1811ab0270d9bce
MD5 b9b46ba2a4c8927944779a7091acd226
BLAKE2b-256 2537e8857e990ff1338b930297350e8690c0d4b0fb22be61d9747f4bb13c49be

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c68794c1ae8eef662a78fec7aa987935e78bc84d3bfd096b470bd441ad5aafe
MD5 b09278b6bd1a93dbe68399b18ab96582
BLAKE2b-256 312690d6a329d8f998848988785378aae01878b6f1f3cd897d650842213441ca

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ae7971fcb69b218ff15b1d4047fb3f60572ac315441a5434213220dee61393e
MD5 75069fc9a65145f6b7e23ad20583cab5
BLAKE2b-256 1388f61c3c38b09d4a8f08556bdc380be6af57af111eec85eadfbfc7af4e5698

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c4a18478e204a12a6cad9166b2ef9bc59d014a3f40a8eaee81773615d4bfc5ee
MD5 2ebcd1b7d4070d98161faaacb95bd4da
BLAKE2b-256 f35af2d3841e08aa682ba027b4d33a7529aefd61b42ff32b607744b30f4a7601

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: polyscope-1.3.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 b2b1f0864a7ced728cb6c7ecc7ee22f142169a7762773f320506cfd9c6b0188e
MD5 c1d21c996802743d30a01419fae1f057
BLAKE2b-256 c519d6eef941c14a32b47d45b92d0f5162cade379cf4303719d1d53ec66b43a1

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: polyscope-1.3.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.17

File hashes

Hashes for polyscope-1.3.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 13b37b10ff7c1b81097c4242bfd8d3c929c716ea51d1fc3db1aaabd5cb45b7ff
MD5 eb96ea9f6b956711172524d91a550b0a
BLAKE2b-256 5dfd53cc70fb14a996a95452a3a73c53fae7d4c0ed070678fb5311d4ea734b62

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d51a80c8bcc61e031548c91c59e2444c1dc692c2ea0d746a1302e2abbdec01e
MD5 40d839fb61d43f93ddbc1e65cec33576
BLAKE2b-256 1a97d0ab0d6a1b7dce132af666ebea074c4bb2e496c60a7fed4db3e4668358a7

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 185e8a4aa6d35038f95e4d4216769fbaa578f0eccd53181cfb980f6243623b0c
MD5 d17a380b970e47c742f5b44c51fc31bf
BLAKE2b-256 3c5f8e2e6c43f9c7c3c08529e2000e7f02fe5ca740efeaa3cb1e80bbf2f355a7

See more details on using hashes here.

File details

Details for the file polyscope-1.3.4-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1f4855e9ac18ea3d06782ed64ecdd337b6639111bc91382ee2e4fbb03c65764
MD5 03e60ceebc0e067de45f37d7a9c24671
BLAKE2b-256 e7ab51d8b97f3ed42b455b4ce62c4b745168b1ee09af2a42cc24079315b3bd74

See more details on using hashes here.

Supported by

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