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-2.1.0.tar.gz (7.8 MB view details)

Uploaded Source

Built Distributions

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

polyscope-2.1.0-pp310-pypy310_pp73-win_amd64.whl (2.8 MB view details)

Uploaded PyPyWindows x86-64

polyscope-2.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polyscope-2.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polyscope-2.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

polyscope-2.1.0-pp39-pypy39_pp73-win_amd64.whl (2.8 MB view details)

Uploaded PyPyWindows x86-64

polyscope-2.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polyscope-2.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polyscope-2.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

polyscope-2.1.0-pp38-pypy38_pp73-win_amd64.whl (2.8 MB view details)

Uploaded PyPyWindows x86-64

polyscope-2.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polyscope-2.1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polyscope-2.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

polyscope-2.1.0-pp37-pypy37_pp73-win_amd64.whl (2.8 MB view details)

Uploaded PyPyWindows x86-64

polyscope-2.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polyscope-2.1.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polyscope-2.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

polyscope-2.1.0-cp312-cp312-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.12Windows x86-64

polyscope-2.1.0-cp312-cp312-win32.whl (2.5 MB view details)

Uploaded CPython 3.12Windows x86

polyscope-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

polyscope-2.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

polyscope-2.1.0-cp312-cp312-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

polyscope-2.1.0-cp312-cp312-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

polyscope-2.1.0-cp312-cp312-macosx_10_9_universal2.whl (6.7 MB view details)

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

polyscope-2.1.0-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

polyscope-2.1.0-cp311-cp311-win32.whl (2.5 MB view details)

Uploaded CPython 3.11Windows x86

polyscope-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

polyscope-2.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

polyscope-2.1.0-cp311-cp311-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

polyscope-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

polyscope-2.1.0-cp311-cp311-macosx_10_9_universal2.whl (6.7 MB view details)

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

polyscope-2.1.0-cp310-cp310-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.10Windows x86-64

polyscope-2.1.0-cp310-cp310-win32.whl (2.5 MB view details)

Uploaded CPython 3.10Windows x86

polyscope-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

polyscope-2.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

polyscope-2.1.0-cp310-cp310-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

polyscope-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

polyscope-2.1.0-cp310-cp310-macosx_10_9_universal2.whl (6.7 MB view details)

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

polyscope-2.1.0-cp39-cp39-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.9Windows x86-64

polyscope-2.1.0-cp39-cp39-win32.whl (2.5 MB view details)

Uploaded CPython 3.9Windows x86

polyscope-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

polyscope-2.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

polyscope-2.1.0-cp39-cp39-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

polyscope-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

polyscope-2.1.0-cp39-cp39-macosx_10_9_universal2.whl (6.7 MB view details)

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

polyscope-2.1.0-cp38-cp38-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.8Windows x86-64

polyscope-2.1.0-cp38-cp38-win32.whl (2.5 MB view details)

Uploaded CPython 3.8Windows x86

polyscope-2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

polyscope-2.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

polyscope-2.1.0-cp38-cp38-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

polyscope-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

polyscope-2.1.0-cp38-cp38-macosx_10_9_universal2.whl (6.7 MB view details)

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

polyscope-2.1.0-cp37-cp37m-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.7mWindows x86-64

polyscope-2.1.0-cp37-cp37m-win32.whl (2.5 MB view details)

Uploaded CPython 3.7mWindows x86

polyscope-2.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

polyscope-2.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

polyscope-2.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

polyscope-2.1.0-cp36-cp36m-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.6mWindows x86-64

polyscope-2.1.0-cp36-cp36m-win32.whl (2.5 MB view details)

Uploaded CPython 3.6mWindows x86

polyscope-2.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

polyscope-2.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

polyscope-2.1.0-cp36-cp36m-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0.tar.gz
Algorithm Hash digest
SHA256 4ed6d92b44a11d2146cd67248343c314d9fe2792c316273643b1194b0d86f9f5
MD5 05f83c7c7bf7f68d2b20e4a80baf1a76
BLAKE2b-256 54e7b2a70aa1d0cbefb760d04d37679bf6d91b78dfc57e4a26822a3cececbc2e

See more details on using hashes here.

File details

Details for the file polyscope-2.1.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for polyscope-2.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 90819db107739531c73141295b8528b1a34b8573e9e3ad65919ae212eab797ef
MD5 0f269793c5fe9c44c43c6441160099f9
BLAKE2b-256 2e1e990edf61dbf7e85e56a569be3f3f9278bb8de8cf531c5d2974d488fbe71e

See more details on using hashes here.

File details

Details for the file polyscope-2.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-2.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6214e1909ba9e81d94c469d753bb4ef4aaa26ce89f8f92919cdd57d233661f03
MD5 34cc515a94c27fc28ae533a171477001
BLAKE2b-256 81a30e302b55821ab968ba91da1535d5ed10cee97ec9a3cf67213d2d09aaf808

See more details on using hashes here.

File details

Details for the file polyscope-2.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polyscope-2.1.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8d8330d4aa1643bc921856b787692e183a7e699f05cb844e73fe254e642fbbe
MD5 bf8d5fa2a5f6c98c370803c2c924259e
BLAKE2b-256 b2fdea0ffc0e583c0eb51029959dfa695e0b89f5f75ae64e674285eea06e5978

See more details on using hashes here.

File details

Details for the file polyscope-2.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-2.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d6b49a84be257af3ef6199011b7571cb064558db394be6cdeecfdaa722a1f076
MD5 cb69f6e4e41b7aa8c3818d8bf6635039
BLAKE2b-256 ad06dd90693dbc51e9247834f03075e6cf1ca12bf6400575c5d20c9c91826584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 37b7e3897b1347f0878fe131529c6223b4fec9a4fbd84b329124075c3cd838f9
MD5 eb52ee812fda5d666ba3afb1196d1ec5
BLAKE2b-256 f205028f97bc3b9b75f001239d8b134124d07986be9144267373b32057ee372c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23f13a3fe274585b238a8ad2586ac74f64f50dc54f740c4857a47e720dcc6f01
MD5 1f9f7b716cd0250bf41df2bf55e1248c
BLAKE2b-256 e3dd8ccd4145c14e0ac0f091c151537fa4be229149bde37c60b5345bb853b371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7f960a75bcc4583280faa18757f4b36e8dec0fd179077318eb2e1a33b8064603
MD5 3f6c4c09e51ecab0e23256f08ee52c6b
BLAKE2b-256 2c9d4444e3fd0eb262bb871e1288ad29b26e2cce873562871892105c7888e25b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dbef952f1bfab76b17bec4d3a4c9fe12d0f1a76e6788818957bd6083cfbb2221
MD5 1ae9a6dc55f6b644bf2276656b62f44b
BLAKE2b-256 fe5c61c40ec42af19c77640ba3c026fdf464aa25cbda5c9125b9fe6236ae02a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 22ae5e88057edfbfcf4541c4705510bc5ecc841ef2ad8156224b4b152f6b0494
MD5 43881d15eb4b464528cf083c15163f16
BLAKE2b-256 d8e0cf31e6b6a8f9bfd36b558bc2178ef823204621fef7e5821fa02c525282f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a0625d43921820e6eb83ca42e0d38d8612b50495ef4c0727dc2af6cd6250a8d
MD5 b3bb7f55eae9999b5014ebe4e793875d
BLAKE2b-256 2880625900558d8cfa5151cc509ba72913b482d7c7dab110b0fa123b28500822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf12f296d181a7f730405e52921dc192cf9f871c6f5b2711d46e6e19d7b18b13
MD5 20700a50a63403f47fecd537d7f1e275
BLAKE2b-256 acfbffbabdbc14d018c7907934d17c409e39c5e2b84c4d63b4ae7ff431ec1794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 695b1a30ef247cc63564e342a6c485bda6c83f754b751001520fc8d542c6a64f
MD5 67c6b60d0fa39386b148590c0bc0c387
BLAKE2b-256 f4242c9e850ec0a80a45649097e8b3e39fae76476a9c263e592871aa88cf43ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9c5188ce9046e07fd4c905f135d117388d09e99fcb9990d87b71d94bcf1217e6
MD5 b264230dd7a898a00856f86dad49c4f1
BLAKE2b-256 3156adfe77cce73a06ce51ba88104750677b1e82dd8bb079e6c29ec27dad36f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 314b2ce2171c9e597958d3f259cadd8002c2210a440732bdb60e1186f54310b6
MD5 b4dde0da76311c230797f262d8d64ce9
BLAKE2b-256 db7e9dd7cb8bb325908f55e707f5e5abc19cea0e1a7993527e8c22a37d94a923

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 90323111a77b86d1ba94790ca13cd5c2ae1e08bfbc5c36ba1fb3419ae51eb28d
MD5 9ad44a4562b1027119fd08c25183dc30
BLAKE2b-256 5c0763c1e567ab660fdde718ee13187614acefdd5e43fe8e527979fc838f9169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 460da7bbbec90fd9aa72d93c26543d68a985f1eccdc14cfd72a7a4539ef5df90
MD5 3d3c36110c14b2891f71a69e3905e5e5
BLAKE2b-256 0dfd47da568e544402c6712a2f59264073e98a0215609b4eb0958767cdfb6224

See more details on using hashes here.

File details

Details for the file polyscope-2.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: polyscope-2.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for polyscope-2.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c1f185dc2f00301c2c27864cf99f58f2100dcca29b48c85dbe9e4f2e482baf3f
MD5 30d0df983fa58b121545ea8587cb0ab4
BLAKE2b-256 75c7d0865c8682b83b3371c1f0a7f6331401c4093a577db61bfba304bc7268e8

See more details on using hashes here.

File details

Details for the file polyscope-2.1.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: polyscope-2.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for polyscope-2.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7e1a4734f3d648fd24a0e69dc62b3c658c6fd9e330bbe7d03fefe824403c6f1d
MD5 834f1ef520e526abfcc1505bffe4f6d0
BLAKE2b-256 d59bc2600c0081c5c7baf816f5bc6393ead24aaa87c5b505f3ac499f9605d2ab

See more details on using hashes here.

File details

Details for the file polyscope-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-2.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0502e90b4731b02bdf61011e30a64a1552c7afc2996b60ac350434337c8b2616
MD5 1e36b19e93f355c5ba65f621e90a2459
BLAKE2b-256 fc5db1fd6728d4c7b333d9969764c93094a360f9e01d44e3b7f0d534f1a64fd3

See more details on using hashes here.

File details

Details for the file polyscope-2.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for polyscope-2.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c98197295dc775d9df0ac87abde06a0bb196ae6e7a43f8356568c4ddf0620b33
MD5 0e05aba8f3ada490595b04a0d070e4e9
BLAKE2b-256 3d5ee48ad28630c9954c1254adc4d27063143563c6fc765b62b55b42ab3b0796

See more details on using hashes here.

File details

Details for the file polyscope-2.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyscope-2.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d03813f9721325c294f33b8dcaf86787287c1b77e0fce5c56b9fe368df7abaf
MD5 93f455e8a436f19f653132c445a8a438
BLAKE2b-256 360229a416e0500d5870c3d93e5491b168421559be819316e5b561fcb118a995

See more details on using hashes here.

File details

Details for the file polyscope-2.1.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-2.1.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c1d6c756b2b17c9ff8f818e27f754af8e01fb5295263ed20682eb998f6c3bf2
MD5 f9ece965b8243ca9a30bb16033e7a3ed
BLAKE2b-256 96db9f37467e06f304ce96f19b14ac22b53bac94fbae313418d04d5610032e36

See more details on using hashes here.

File details

Details for the file polyscope-2.1.0-cp312-cp312-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for polyscope-2.1.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0fccf2e911347b4f710ae71749e5545d0be63cba97be0bf29ea5423d663c1440
MD5 84ae80df4be17e9b48033a5dc9ca4b62
BLAKE2b-256 210e10c1218ee2d96c4ca1daf46eaf405f398ab99a8bf094e9ea1eef3dc9fc82

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ae99d67c1d491a8de3c37a492a53d0ca9648f637528a5ecd419c88ff2fe2d3d9
MD5 62f669f11d754ddc5a61aa25e6850b06
BLAKE2b-256 01d8c861915123d9ed856052c84263efec551639a879cb58e98892e359d85001

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f51d37376e202cb138f412714d108dd6135650e313e68a046f86979347cd170e
MD5 502db56ee709f23099224ecf3376587b
BLAKE2b-256 495e52f15a63bacc925054194e7549dfed18fc2191891d5c5bf23dd04ad553fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b501b8dcb353f87c1c89fd3cb727580ada75b7cae359fc1acdd709204c17d28b
MD5 7370626d1f9fd4e265c8301f4d224ec0
BLAKE2b-256 cebc7f71b47bb67b80bf187d7d39169fa5076563543106a5ab986044c777edce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47233b657fe1ccb57bfbdf1eeec616ddf86219224f7dd93407178cc7fce69296
MD5 94b0e34187a964be3516c86657a3e3a3
BLAKE2b-256 78431098d99617336ddd873b8610d2858dd744982245130b5eb25fa0b667430d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79fae4df9ad861f4998c49ac6f782a007d5b600d10295696a3bb3892fb127c20
MD5 bce64d3db8edb499bcb9d6a8f0029f81
BLAKE2b-256 5cfd5f2246c8db8072453ca39f050afe485e12a969892dd021f346115a45609d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d2adbc2d25fbbf668dcbc16a9484c793d46e9070e777af7edd3d10210f3e51aa
MD5 3d22f506bde174f54515625bafaf18c0
BLAKE2b-256 aff0cb1b0776498e8f76faad85a7cfb8d038da752f8eb57b5b0316c7954acd46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0631c7bb718bbdb366103a0d783ae592887ef2b6f10cc745603622b206ad8eab
MD5 ae31c522f91ae8549576d09d88c2ff84
BLAKE2b-256 d3938abee78789eb6db96b092eee912648831e716e6caf927768bcb89ff68006

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0ada82a3c57eeccca0f6a81ae27793a5a928bd015ae1ee5002caef906157e579
MD5 7ecfb7ee264dd1ce6f296f584c1a1a9e
BLAKE2b-256 1b7cd1c5cb38239683254a09b4ee77d0e3cb289815e36f575912762650e18212

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 23a72d28b8eeb965c4a2665991fe89c843d0502056134322ba1bcf1fab120e85
MD5 dcd2f725f1ffe60ecb8a0c2715048d86
BLAKE2b-256 6b713c0b42a03f0f666d6c24a99d72515e0dffd3d5d2f10c300c9fee15d9d10b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00801e02df2355b787aae05f4e40bc5c394be67869fc10f1209e76da652028cf
MD5 5dcbd2fba2dd00a50b823cbe0df87685
BLAKE2b-256 0a42457c8e37c8b128c421fcc78e7ecd25d3969ddd4911bb85b4fab2b1a0b95d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 558629bb19aac09a01d84fb3e8ba073b8289f68539c734effcd089fa0823c1ed
MD5 ce9db446da4eae7632510ea2e4fee522
BLAKE2b-256 9270636286cdd41df3a7a2b75bc68727e32f65518a1eb3cfc3b33e66b366a139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2e1c5d867b037ddf40cf6f59b3219507e50e3030d1750105ad10b5bd744e395
MD5 d610962a439beeb1f3bda65daaf22b37
BLAKE2b-256 e000783cc904c1b7cd013c16574c52dc6abad964ea80281d9ce79efa5f90078d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 420320279a5d94b5549354ab7f7afa2e3edb6d7e4c0a7da27a5defdb88d528f6
MD5 8c16137497a10bed7210c3d2283182d1
BLAKE2b-256 e1d3e505c224538fcf3bd6063ffed62fa57d7efe3a5f404eef40b9473106a253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 446a644b1d30c7b4fa22a2d815c2ee844e04a5d929179b24905d2b55457a9eaa
MD5 73d6c1a512ec4dc4ebd9064576d7d64c
BLAKE2b-256 cb59eccc9cd90144c094a93f12b2e7f8a5406cc8bde349989d75f4a9b8258cb6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3bd6cd6f4a6aef0981e72b1870faf49bb8f4eb82814f4410f6246312cc8d332d
MD5 e4ba243b5e2b4d9a986a630e20cc093d
BLAKE2b-256 be246358b762a60f568098400f8dbf8ccd48df98a1616fa84d0dfce20f93e57d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f8242a76e64c64e4b0f07fa24691a002887b23c6a739f4731aabec116c035a20
MD5 e01cda5876d96ea146012cf97b7a80ae
BLAKE2b-256 9af6e14e2a92eca23c8c374e0eddb282ae7adf066530db85e214c6cdc0015a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27eacc7c43eca6a8b698d448900e58eb592c6d833bb8c4cd7478f88a6c32fee9
MD5 2dddb66be353b5af4b6561630d92ab07
BLAKE2b-256 152ad562bc75446edf6f46c4ddd7342a16a6b53af37db6d2bd426b30ca5dd87c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0aac08c5b62a2af9ffc79af54ee0396c6ef190ce4f890c161c4c3dff013eef39
MD5 42b8d0d9688aa02a0e137667bfb07392
BLAKE2b-256 d93c89ac05f9d46ae0758f776e21c0d71abf0899caf14f00492a582b9f15cc56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87c28a0076a52f7e412b997a82cf226e7c9cabeea300c96b52a4a84391236eec
MD5 c328415e4b7b78cbc77852839bdcd2d0
BLAKE2b-256 58e268ec37dc98f9597e68c4047bcafd43c226dafcd0049cbba3d7df4379ccca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54fa277f1114f820d2f34fe511a5f5818b12172f801504e469c7f86848685818
MD5 a112ae163c5fb12287a16ba8f472ec9b
BLAKE2b-256 b03f0913cd1fbeaa48deccf09a41b25dd969bdcf2ad44283b7067d1d4ec6f60b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ccb4d6c79aceccbf74bf7c0f983d14913558b3758466d2f4f8dcc40dfd56f75a
MD5 866a72510f4d648581320ab7ba5ff256
BLAKE2b-256 4fa280c5824032bc317ecfe8d43f606884e7df23deb9c0c4dfaf899ec407f903

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f87b9f4e8e377e5f48d74b46a66fbc0b0dd83872eaa70f6d122bda41b104f8cf
MD5 52a57ec8915ef51ed4ae4c1b8a40504d
BLAKE2b-256 73d9dd9900237cf7b9dfec02beea409eca745506d1ed1bc7e20c4a10b8260ba2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ca9c934833e5233cc6a45f2206ba9ebe83174f8d3579156d418b611ceb52d22f
MD5 714f8fe9336da7e2cbdf057d74d8139d
BLAKE2b-256 52c11601003507f4314b6e1e87292d89d9a0c18300bc6320991797968859ab2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa81b8c640c8bb870e6ac8e7b7fe3fd42d676f2f6062602b6843df93467c4a72
MD5 2e289c0238012c5d9fb927ec8684c1c7
BLAKE2b-256 067d30ccf8f0a4d5813d52b7c37b6831be8d8d1e60e75c7cb29a0612421afae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7bbed8d7b69a65ef49d6b86bbcb3fb03adc19ba9228fed6d9d0a621ab6fbcc14
MD5 22fa878c2ec773a84ef360969692bf06
BLAKE2b-256 e29f87af154e2ab9cfd4a758820b4d7947b6b4667003e3665f83a29344d5b933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a547b372a78f39b1df630d1f7432f3f0c5c34b020ca8a1dd112b6e6cf2d4f5f0
MD5 3547bedd9fc7df7bcf3f226c9fc76551
BLAKE2b-256 45f003fd409cbe0a7899cc06339d160307ac749d965ebe74e9e286a315c9a105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54bd26f37d1dabdb10e2e17190ca8b4cc7c6ef69b92d216479d75ed68339811b
MD5 db2159a287a59f94802f258d2c0cfe8f
BLAKE2b-256 46118d35b039c6f7e07f01e76f77e9c225d63da10f7ba38abaf90331e38bf680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6ccf00a05cd6c6e3945b028de64b6d4765602968ecfe08118fcacbba7a2d6ecd
MD5 668def9c017b38fdccfcbfa7844d4821
BLAKE2b-256 f4edd58b5af0f5f53a303ff1246bf3fa2fa310e6a2027f1870f10e3559139028

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 45e405eb3239fec151f9e4deb28d84125a13212cd00ed9b76af3b50df6ffc017
MD5 0b80c92cb8762ace961d53b34c3dd664
BLAKE2b-256 a8b7eecf39ca09003f1bca0225b766d781e63f4024c7931a2b1a11dd8c73140f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 95d5622bf0328d3fea15a64e2089460bdf7aa2f4f204ebe886836a467126c745
MD5 a4e494dd5cd97c9ba2c5cc1bd5266884
BLAKE2b-256 7d2aa6b6d4a7f97619f2e73d2b49cb89a888eadfbef8f3197a345902fed6816a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 110adddca2e02d8f1dab104045746a2b7a4ccedde5623f8259a5e785fe9f457e
MD5 e277dd2dc88235a02d5078905a944d9f
BLAKE2b-256 69bc86c058055a895c98ef9b18f46dcdb0c1ca61d9618867d91cebda57ae468b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e6ba85dad8676701795d02c65e9b34364c4dcf4b20b8ba19d908a28bfb2fed02
MD5 416db27284ee272618432e29f04ee2b1
BLAKE2b-256 bfe2d03ab5cf891e994af0a7272cd2dc522aff3f927a67bd2e67e3efbfe87810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 87c4064679c0d487df557d93a83d8806a270c933834f09c25498a8b1cb9d06c6
MD5 81abf5a4c449a1821c2144f0d3351e4e
BLAKE2b-256 fd8466be9b4b020a6069d7ac3c4285d74a14c3b977bf2d260447b250f624ed3e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9b9170c4bb00776c0426580674287cf90c64003f96988da8c9a8edd1a16b5b70
MD5 3dde31b4585e8e5c6f4c6831ede7f6fb
BLAKE2b-256 c92bad8e917f489aa50758af8b927047b2e36cecabe9fda0a4934fab868a120e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 dff85ab21a04b099938e78c17fd2eee0ecbf7f8da96f3d419f6f81c3bdf312e0
MD5 1098472b01eecde8de49765d3c2a1a4d
BLAKE2b-256 5f49a1107f7f52473f1414a91ba2c4625f330dc2b8605fbf3e0a6f9b0d90b5ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63370c28f8b31ab5201af00cb9cb2470c0239f3e0a5edacacf601c2f1b609154
MD5 4cf601e801a5dc07e5916901faa09c78
BLAKE2b-256 788554c4638d29c74724cd05367ec1fe4ab9d4a39aa6571b53261883d2ef2a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76db41946bead005218e4a0613fbcc424be2c509ffb037df88b14ae8245df95e
MD5 802c5aed373a9f27680f13b1e4650560
BLAKE2b-256 b302c61ef1bcd3099f0ee6a38e57c6a23380d52902409ac3658a3098a2333d54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.1.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd74ba21bccb706aeac5f6c2d2a89b003d6edb92dd3c875472d1b69c83c36f41
MD5 6c9e0979c7f0869359dd12b280e6c0b5
BLAKE2b-256 c7ce18bcf09b742bd432b5b696f3df7b958b9c9fd28a4d454b4ca3c68fea7457

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