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.0.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.0.0-pp310-pypy310_pp73-win_amd64.whl (2.8 MB view details)

Uploaded PyPyWindows x86-64

polyscope-2.0.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.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

polyscope-2.0.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.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

polyscope-2.0.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.0.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

polyscope-2.0.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.0.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

polyscope-2.0.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.0.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.0.0-cp312-cp312-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.9+ x86-64

polyscope-2.0.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.0.0-cp311-cp311-win_amd64.whl (2.8 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

polyscope-2.0.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.0.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.0.0-cp311-cp311-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

polyscope-2.0.0-cp311-cp311-macosx_10_9_universal2.whl (6.6 MB view details)

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

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

polyscope-2.0.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.0.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.0.0-cp310-cp310-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

polyscope-2.0.0-cp310-cp310-macosx_10_9_universal2.whl (6.6 MB view details)

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

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

polyscope-2.0.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.0.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.0.0-cp39-cp39-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

polyscope-2.0.0-cp39-cp39-macosx_10_9_universal2.whl (6.6 MB view details)

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

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

polyscope-2.0.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.0.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.0.0-cp38-cp38-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.9+ x86-64

polyscope-2.0.0-cp38-cp38-macosx_10_9_universal2.whl (6.6 MB view details)

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

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

Uploaded CPython 3.7mWindows x86-64

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

Uploaded CPython 3.7mWindows x86

polyscope-2.0.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.0.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.0.0-cp37-cp37m-macosx_10_9_x86_64.whl (3.4 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

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

Uploaded CPython 3.6mWindows x86

polyscope-2.0.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.0.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.0.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.0.0.tar.gz.

File metadata

  • Download URL: polyscope-2.0.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.0.0.tar.gz
Algorithm Hash digest
SHA256 6ccb4494444f7ed38fb35c1f4c5d8405c803cf0af315194917b783acfda8de1d
MD5 982782ce9f6a45f92456cbdf3500a215
BLAKE2b-256 29f6fc5c2c53daaa08606438dbdf84361d65ddcb26848a345114e4ece3d38c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5581772736fd242f41424bf1fde70515a91d91faf068429aac35a00ea6c9aefb
MD5 d48b7cef06d6c95224bb91847cdfbf1e
BLAKE2b-256 66b3e83bc6e60b13aa2b3355c7c6d53fe784c69ebd7f0eac11b10684b2bd2ea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c06096c0b5df29b3d31ab1be779489d5f10e04512400f87464241f26959b73a5
MD5 8f49a0870d147f4e16c6899374c041ad
BLAKE2b-256 00b4af0297183325e88abdf1b3dfdc065e712c3544f08d682a220c4c36741421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c72b09a10b0137b6fb6c13e3817eb92941bae42a8c12421842ef1058a7b085c2
MD5 590fbed9810bac2537cf240a80b5f053
BLAKE2b-256 3e85a1e4adaceddd466d07152f343b65eff4f7435a60aeba07dafc23bfacda21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ecb4a6403c6d28ece47923c295534883680bbf0117b6b0a3f153be9457a74ca
MD5 753d1562b054d4ff675750f60f31322e
BLAKE2b-256 59061656b1b8473ba117b998604dcb70b8cb64b73a13e76a312be413b5637938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 20c3cc8580100c493aeebfb3eb04259a608b68cd63ecf6f487361098a9b1db9c
MD5 dadd9af53ed754747f49c16ded4f0ef7
BLAKE2b-256 a079d54eb1c69398e63ec5b940bbd6d514d807675f3d6ba9cd5d3d8d924bcebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85a65033e109048be4c4ea043dee92973f7b3e9f72d67767d42bba4386a1d206
MD5 ddeb0bca6492dfc09117d45dc47ec91b
BLAKE2b-256 cf078201080a02db165bc0a15541a7d596665d8e811f37d99064cdcbc40e791b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39e8b8cccba6d4d4a0f9230ea5a1f213656f9727b59dee41e51c433778d7ef86
MD5 2489074918484dfca3cccd458d2e987a
BLAKE2b-256 cc6b70a2d98f349a9fb5b431f52ed73cd22b85667779c81b0f387a71e37d16e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 28c25e7f8ef1656a576af275a6e1ae01982b0ab4cc69f42d5e0485f4cd9d633c
MD5 bf834fa67b52e70156b8ae0eb93d3beb
BLAKE2b-256 79e9cd5a3c23d8406f904c145eb5620780f86fe7d2dc09e140ebb76510210feb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d8f0d6c7b9aefe050a63a77489695ec3b75b5a0a65eb424e3edd7d7bce534b0b
MD5 d7d08942cdf23b95fcdf945082df8485
BLAKE2b-256 2cc706308eea465ae69babc458d29269a3afd33c8748ce4e05a984fee36a6fd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb8150cbb36fab0378f44e9b3fd840c99979ab4b04ad6a7950cee5365e15a836
MD5 cff46b9f92fd75a56a3530d05152591f
BLAKE2b-256 60656a9ef433fac767440a2266f3a20d93a550c900d04d6ea4d965f755acd1b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 40906ffa578d2cf497e07cd0f5f7847e75b62c591e2d98fa4e43fe3108145a43
MD5 e306cb7ba4bab0e298dd29ad5a0ac5b8
BLAKE2b-256 6fd52ec2b1abbf13dce755c1c6d734aecb09ed0d82e11bb09125ca8c71b34881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f3b19cb6ff7514fa2c5b76e258530792ada33ae1e1337041b1cec00f684c5812
MD5 44b6a7c8b137908ada2ea858e423d7cf
BLAKE2b-256 e98fe7edd5b78ae1c77428c33aa4c4047e0a2956ab7e1fa57bbc632f2ae83aae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0c707e3603599b341ec7b30309b05c8f3fa7f2ad472b2de55dc003669fd89280
MD5 c20289bedea0e771445400ba71c3156f
BLAKE2b-256 0aefa7d8312085e8239c0b35ae04bab139a7478e3eb0a44041c5e471e1c590ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 016c82ad98ba1bda862dbea406b80c4177e4070b74969cc6a28b3c4b3b2d6a90
MD5 0f2b76fe8ade8e86c9f25b7c4d955891
BLAKE2b-256 dc3af5545775a0fa88bc3ebceaafb5052f147453ee0e912266a7e81a3fc35bbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4fb24fccba6756c8fac49bb32cb64e9b5d10ad8c162e3f145ca38e6323dc19c6
MD5 124b9d2d6fba8984305944068fb54695
BLAKE2b-256 1302fa97e63da6ff26fecc94007eaa4174f5a05b59d7da2dd3b5f0445af8583e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cbe0653c62cf588a9d0b32846e62e0de6c0331d5e6469e48023691cde743b6e7
MD5 40732bb399463698a74bb7cea7b0e075
BLAKE2b-256 eb181dd5377b223fb707fb4e4baa7e6102f2d1d16d46df182d5cc69e8b1fcc95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9894f01d34dfe1411b28a1fb6815ff1ce53cae9f24e06d890d3db7d4876e5173
MD5 f3084ceca5ebe7beadc70cd5bce1133d
BLAKE2b-256 05e189ddbdf380ed48fab9148f5f52a53d332ffdb1636882aff3bd794f2c3f76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3f54bd71e9fcd44828a9ec3693ecaca28160daa29a175841972f59ac785c9750
MD5 ae3599e24d93ede9d84f76dcb5009d35
BLAKE2b-256 75802a0fd2a6e84d19132bb1a02d7f35f14fa628ad9c12bceff7bc16b4d59c0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b844c099caef6c6575a50cd51c60f7c0d293e14ab39f9b25920d966d742a7f9
MD5 4f60d706c916aaf1158eab19e31f09cb
BLAKE2b-256 9f8d40c59d3d33c80c536e56465cc4bf17a1cb32ea646cc8420dc0a6b4dfc68f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8f36867f13d826734546339f4c602a80f154fb452ea1cbac598ae6efd9e7fbf
MD5 6ed225c92f901cece41b1e02b000bfbe
BLAKE2b-256 a9fb245acc43a3dd71580e178a7a99b26af8dabad275117734c430872d1a9cca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ab75b9b08c6ef073c87d2dc3df77eaeefc3940f3d2524cfa72967275f8299c6
MD5 f2d2c420d5d5461cc1e0acb506290d10
BLAKE2b-256 7d38343b078c9504931b2292d54a840bf449b66898fe98d2cc54cb5a8749e565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dd6dd5917ebe7f149086a137214f44985a504fcb1d5aae8af4de689bc4512812
MD5 d96e8fa81523e93f4710799a146e2295
BLAKE2b-256 790fc1d81e8d58691d18d5486061ab7567c2a102d9b5265b8080a904eef64ebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6782dab8ebab6cedb0803aefe65930e0cc68533f43fd4fa7d8abd614fa263857
MD5 c10a2de5701ac256d58233b35031a526
BLAKE2b-256 792acdf120718da35a946fa63deed54c95028faf0ed54a1946ba866228ee81b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c59e89c5f83c353a980dbde562eca87b5eca02a516f9af80adef5800badbb834
MD5 6e9756e4aeeec4767dd9e73208ea1a44
BLAKE2b-256 1e7a4160569d82fb093b162927b553f20bad2e2a812e27cc8a2afd5b5631372f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a1913c534b49cf9afc3f77898de1dd72961c4fbc914e484fea654c6dc28a08db
MD5 f35a2a3cac7c9c6356f0985e9870952a
BLAKE2b-256 678268bcb8c92fa2e716f12e133e1b0c0f07bfcde602d3b7afbee629be6ca429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22aa7683deb4ed480de9d4d5e978d8a4368df31817e8457cb454615ebf36372b
MD5 0a2d912b00f682bf799dd710f6c37f28
BLAKE2b-256 a84724ae2fff2dd7248c6f8fc3a83cdca90b4f4932b685f3deb3fb40a04c6f89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 27c7200b4a66879514c7131ccaacc8461db6c10257e5dfa2455fb4a095f72b2f
MD5 24eda8eb4e219b071113fcda0ca209e7
BLAKE2b-256 bd68f27b90838acd7ff148a1ba6d4d45face4f7363652752ad9af2c2c084dd16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a707ba4a28295709e5641004eeba283bfd6ead911863b0aa25d3e5914020beac
MD5 559a814bcf902cb90bbfd58bb6a2ac18
BLAKE2b-256 24d77ff7072e31cb969b90d4f4724eaeac886dc6780736922014368979a7b817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 bdde9b3ff01c019e284b9b6c87d26685c0598b60a0eb8b9b486c55a3cb41cd6d
MD5 be98bbc3b3155524708244e2e25ccf9b
BLAKE2b-256 8e01acc7decb6c48d70be1aee6afd30fa65d7c61e9c5029237670c0439759bb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 68743cec0c7a9f2213c5105fe154cfac28916dda67d7a121141ff2d1791c1f3c
MD5 dcec61094f5a64c9aaa7c1b7da46d0a2
BLAKE2b-256 7020bbd44c69f8b9aad70f6d33862988014f6a454bc901a456668dfa0b79a9b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 797c2fdc9bdcf26ddfaa6e25bec03de66bce89b7e1daaa1e4a68a862039bc532
MD5 83f6c58097764f60aa81bbf8796ea344
BLAKE2b-256 960bada433025beec194ce3dbfae1cc07f383d1643d2c1cea3c31478dc6ff40e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9f8a48b0d108f03fe71d2d25b71ffaf9489c702daba2014589b8c19c2e2f6325
MD5 28be77395710d13d12d763f08e1b9a1b
BLAKE2b-256 93697952f8126daa4185684f46925ffaf14c0039c7eb530a5ab9eed505ce2c0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c787d6f358408d839f2c8619596f3b9aa332910b9b8ab54d9c56ba3a426bce36
MD5 0f735e0d16678ea9aa82097bdedeeecc
BLAKE2b-256 03c6f556d7f57bba76e83fad02fbfbca1fed2dac5acaf16b720a274c0488f249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4067f746c518b71ae42e52ef4538c44bd39c8b9177fc0f85bd8fc12722d0fe31
MD5 c285df653c78c53f9cb8bb628d19fcd3
BLAKE2b-256 e2acf4f98efd6fdb48eff44b453f258701396cf5b9e9f58d503a47683318eecd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65f6ea57332f464b0d159b25e2ce0fb88a121c4b08e353a5c593de495ebc3906
MD5 2dcfa82719e5387fce1a1c736def2907
BLAKE2b-256 909975030a707789754cd33dadcc89b222977913d0e810e440874cb49da67f1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 858811ad92afe7d6b4f4cad9ecf52d7977788ca64ca2b7354b14805ca0c71590
MD5 21c64bbdf61b48b86dd4eadd0efac335
BLAKE2b-256 62f771913149e797d3a7f1448faf348a1fd18ead5f4ddf59def4c3a69ae3a8b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 b8b9e16e14c148f7b379b5ca1fe070989ee1986b438a8a7bd0b46c285374090f
MD5 32cb6d477ee569b2e96ee9a708853565
BLAKE2b-256 ca025f7b7015ff4e58cfa9cd045c6a66d4fb4eca4014a9a53ccd59bb4c63d238

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 11c349aa4431259c99e22b86641dc86a8be9c84a2a14e40e9c8f54780b4b36ef
MD5 9e13d41ac55157a2e60cf10bd5317597
BLAKE2b-256 caaf32bdcf2a2b9c80fd3dbb5971955c69ad93eab2fd932f9b6d63064f263b8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d9b09acfbe5bdd5f9831439a09c02f583c7d8778015f7e4616d75c65d3124397
MD5 eb887f06083ac21a99b48926fd5a5032
BLAKE2b-256 ec33baf2bfff71c546271933d413b01da859b8994f07ddc6d33cc8ec867e4834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fad0036cedc42f29ae0e1fc0a26c0ee9655f687c0d9bacb57c65f26921cbe35
MD5 aa29f910dad3c87053a40f385cab6a99
BLAKE2b-256 fbe2dc9ecff7b5356c64584f23f7e8354bb4ddeef39666c66f85b3fd6f238210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db9964193891ca6dc9af9f942716ef1262d76996904cf40ed551818a65646e22
MD5 cd4e3c9dcdfbfb3d7f8aa2765ff8b3bf
BLAKE2b-256 1066921251edf0d0272516dffc7df4248e508de467932e08cd639080e5018bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19026a66b48586e66812d30957168fa443abeb4abbce061166f552812a0da41e
MD5 5baa546bfbaaba3f0d605d95a996085b
BLAKE2b-256 a2b830b481a2553e096e4b0bbbed52412c30598e01e25fd68f787fb031e292e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35e17c71ed8bc3e10fc3e095fc2a3c2ddf3934a55f4d7a43067e041c3ff5ea84
MD5 1984a2133717a56cf655eebe665b5582
BLAKE2b-256 b1a5c19a31212b65799be029e4cd02e6e75c525081289f5dbdd2748be77e1f09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c4ccb35e3532232ccbae7e292f4c6bcd6d254bebfd874afdc5a5b8a716b13a43
MD5 ee9ec5c796265f6a588cbe869377bbb7
BLAKE2b-256 0575f846cc4d0ac49655d8312a0633a4c27895b142c3959a15f72c2ab14ada4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 15ca05d7bbbebdbbed920260336e94800fcba53d3a3fad21a7c19ade33e841d1
MD5 bca5f2ea8dd88ffdb029cf8b559f9736
BLAKE2b-256 9e2a5d78f07dee3118c97bd53addcbee0d0255a59fba10bb73e360bb699b8c71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 36390dbff3a3c5eee039c33ffe8d8d1cdb304194daa822034cb9af77f29cf811
MD5 be883634e344e886739947a975f8bbe3
BLAKE2b-256 6efdbebd34532cbe3c59648e7b97cf5ed3c40fb4677d46e54e2c5ed3f79fbe0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aafd83afd6cf01aa9b8da34275cfe85eef28d6e0d9043958983219b8917307e9
MD5 df7916cc5b85730d734a78581cfd7564
BLAKE2b-256 ef1a87a1a665077f262fb2ae3e6e85daaeeb76fc0e2ad153ba9fd4650f553aee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ad0bc1ebb8438dcccb4c66b01da5fc7266cd4a0f3e2e58c0869bc564beb5a8df
MD5 391487bd59d172aab4f728f091b0fb8e
BLAKE2b-256 dae14d145fe79ca8a39bc88b5ebf050d940a5d197380a20fb347b99eb0874a64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8adf78c9dd63c1fcccbe70ad0231032772b12c1afaef438d84bcff5fcf03a95f
MD5 50c9ebeb9470ac050312879e194b81fe
BLAKE2b-256 9d69c98e4253579a9a07033804356ec391baa8a2a61c99cd920e3a329f01f992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 639994efc8da1f7ac1c1d39e002aefbc2fe22f7165d76bd49b8c547ccaf89e7c
MD5 2bf8e8482a4bdb910be0a6e2dd9c6546
BLAKE2b-256 1763e1dfe020ebb423220e64336aefdd222f89cb8e81ce54a08451040e9bb650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 23cc0f4d009040cb4e07cd65ecb6ab26ef8a4a01ccc40f6f7767cbbeaef9855f
MD5 f7d84ad9608eb2bfe16165e72708020d
BLAKE2b-256 cd0f1523993bf698f67559e54a07f7bab1548ba607b0d5aff7c3614d8e81be0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 fa162d15b90c7bb0fed2c5f229e4575feb7810a7efce9c05274bf4990f204133
MD5 1831984909321b540085c31e237b8494
BLAKE2b-256 035901a80b16c81a46ec91f2a43f191167b7948b06bf3d8f68a47f6edc28721b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 80b5b6da493312c2950d6506d12fbb55d3173643e2338ba2409a6ba61b5ee829
MD5 5696856e22f4a5824717cc0292b39872
BLAKE2b-256 42851539937411439c8f4ff5c1b25a8991f898984c5d47b75c8fb5d8de8cb1d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91eea4c06f93bcc3d8186bb7263114d725b7079dbc898da395d460552a0dc2e2
MD5 8f797aa6bf76bfcd1a24ef89b6c14bc2
BLAKE2b-256 b9bdaee90533a84a308cbdaa55a7032b00169bda41bf59218e68664325071d0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 306bb114bf4254ad073e6b1d2976a124406d2fd16a3a5081549386a315e13f06
MD5 1827cb9d10200b5d36b0d204e9d598a8
BLAKE2b-256 4b6496c3bc358ecb0d70cd8978fe878207160b736feb1669fb9dce4f19e556a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49c015be9766d206f46a278a148b08ab1868335736680a4a4f36dbf9e8601d3a
MD5 b9de39a15e9a3d2edd750a6b38c76a99
BLAKE2b-256 028bb810a0a1eea5bcff98cc9f759b18b56a8caee2568428cd34634ca22025ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 2ac14fad89928693bd355094b3664b434de31687858ba456318c828daa44e1e2
MD5 68deb64f46a4613b6f4da852ad2c6715
BLAKE2b-256 a85022acc17d30e8509b1e7d98301dc426244492c16bf3c5b872ea08103b29bf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.0.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.0.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 ad2efd8f549b12e7b417f9664246d4e34a38afec1c584d4a7c49e1739565f089
MD5 545bd7b3b4c755af67cade510602f915
BLAKE2b-256 ebecb8d66db62d5fda0c1f36761b39b23c3a5c1d147eb09cb4f4e56f7be952de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6a9a49d18c0fbf078af3919492663cdfeab6a9ba0ffc5932ce87a6ff19156c6
MD5 f87d51c3b8738b6c34b690800f2131ab
BLAKE2b-256 0e960d7a2ea3e20dc264b748ef3135f34db0c4bb838b1bb2f4e284dec62cd5a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 228ca474e141e745c40de8b22588a90394b773d9eac3cfa51ce9d99e68b10af8
MD5 be1b71d73d8e5b83123d9edf622a922c
BLAKE2b-256 ad8756b84e81575d75b9feffd4fbb8acab343d4334d0a00463cf25bfca13f6f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.0.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c548cdcb02c0eb4c5893f7e935518156760870260370ddb15b145e09cdc6ea5
MD5 db3b1934d2148355d2c92a27702d2d90
BLAKE2b-256 2fe96d9c0aff5c4a9620122b2be092ce5fdea89effa201c9f798adcd67324216

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