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.2.1.tar.gz (12.4 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.2.1-pp310-pypy310_pp73-win_amd64.whl (2.8 MB view details)

Uploaded PyPyWindows x86-64

polyscope-2.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polyscope-2.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polyscope-2.2.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

polyscope-2.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polyscope-2.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polyscope-2.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

polyscope-2.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polyscope-2.2.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polyscope-2.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded PyPyWindows x86-64

polyscope-2.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

polyscope-2.2.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

polyscope-2.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

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

Uploaded CPython 3.12Windows x86-64

polyscope-2.2.1-cp312-cp312-win32.whl (2.6 MB view details)

Uploaded CPython 3.12Windows x86

polyscope-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

polyscope-2.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

polyscope-2.2.1-cp312-cp312-macosx_11_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

polyscope-2.2.1-cp312-cp312-macosx_10_9_x86_64.whl (3.6 MB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

polyscope-2.2.1-cp312-cp312-macosx_10_9_universal2.whl (6.9 MB view details)

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

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

Uploaded CPython 3.11Windows x86-64

polyscope-2.2.1-cp311-cp311-win32.whl (2.6 MB view details)

Uploaded CPython 3.11Windows x86

polyscope-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

polyscope-2.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

polyscope-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

polyscope-2.2.1-cp311-cp311-macosx_10_9_universal2.whl (6.8 MB view details)

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

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

Uploaded CPython 3.10Windows x86-64

polyscope-2.2.1-cp310-cp310-win32.whl (2.6 MB view details)

Uploaded CPython 3.10Windows x86

polyscope-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

polyscope-2.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

polyscope-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

polyscope-2.2.1-cp310-cp310-macosx_10_9_universal2.whl (6.8 MB view details)

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

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

Uploaded CPython 3.9Windows x86-64

polyscope-2.2.1-cp39-cp39-win32.whl (2.6 MB view details)

Uploaded CPython 3.9Windows x86

polyscope-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

polyscope-2.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

polyscope-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

polyscope-2.2.1-cp39-cp39-macosx_10_9_universal2.whl (6.8 MB view details)

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

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

Uploaded CPython 3.8Windows x86-64

polyscope-2.2.1-cp38-cp38-win32.whl (2.6 MB view details)

Uploaded CPython 3.8Windows x86

polyscope-2.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

polyscope-2.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

polyscope-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

polyscope-2.2.1-cp38-cp38-macosx_10_9_universal2.whl (6.8 MB view details)

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

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

Uploaded CPython 3.7mWindows x86-64

polyscope-2.2.1-cp37-cp37m-win32.whl (2.6 MB view details)

Uploaded CPython 3.7mWindows x86

polyscope-2.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

polyscope-2.2.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

polyscope-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

polyscope-2.2.1-cp36-cp36m-win32.whl (2.6 MB view details)

Uploaded CPython 3.6mWindows x86

polyscope-2.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

polyscope-2.2.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

polyscope-2.2.1-cp36-cp36m-macosx_10_9_x86_64.whl (3.5 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: polyscope-2.2.1.tar.gz
  • Upload date:
  • Size: 12.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1.tar.gz
Algorithm Hash digest
SHA256 b01f0b76cdec3e6728e16e273b07d4630a3073bba41e9fdd3721d569a1417b7e
MD5 d0a5532f3be07a7f73a8e3b357250d65
BLAKE2b-256 d559c0eb96a148597a923e2cd3a1187449f8429bf2184451e2f3b9f6ba2ebbe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e78b36a83b1896fb774f6f04d4f3859ffe239771e690d2b180333d12ecc666a0
MD5 a405ae708414e41391076e6ec6f17e26
BLAKE2b-256 d23fd9bed69c1903d0ceadc470606f0bb63a107f71ccbd68f2d65ee9d95f1be5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33951b9d61eb7a9e27463e3061a19ff2a445cb0c842fdee1aacc6d45d0226efd
MD5 70be2835771fa296d44541d44ada3189
BLAKE2b-256 622f37469007e122c3cfb4632d886560ac3db7b015ec90d6623754f04580e383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76dc028f2edc37b7e6127d9311cb3535d02e6a9f57434b4748e76e6d48fe0401
MD5 38e0e4a280fec49bab3a14847f00dc28
BLAKE2b-256 ccd7610a9526185bcbaed175ec2d59184643a1dc56b0616ae6ae41bcaf633334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fd6460054030fd3b026b2b3b9c6a6b5f42cd7a34ff1e5eef0fdb9bf5524087bd
MD5 ca30012c84b0bcb2b71e42836cbfd2fb
BLAKE2b-256 ea659f8dfa1655a95552d0e4db3e408bf259d790666da4af1fa81807c661c898

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ecfcb13b9dcc165d96237512239d7c49c7fa631019d52689566ec29d4bc5e8a6
MD5 274b8a6bf524e173629ce764731a204b
BLAKE2b-256 9975064abefd924e9469587c5adda46804a33f3f54173ecc5c42dcc80f748c3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6eff604016080929a8b3749050e84fb9480432163a517787db03ecf8581ad4bd
MD5 ccf2669cb26d612675bf82f2f2fe2098
BLAKE2b-256 8680a58f7d6c6d1eac20c26cc6c0979e5d86d5ee16c11821d0dd40903164265a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa77f976d098560c63d3d86aa679cecae443c76ca8a3effe4b022872428b4fde
MD5 6ad91a8810ea0a5c611a30f7505d0969
BLAKE2b-256 ad5293d66a1926c453f631b5299cc7cf2d02a86aeb321e2e080641b9bd6bb405

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 feabcee454c1edd49dbfec6b026935a504daf1555c66d75efd47b83c18bc595d
MD5 308708b44d49bce62dabc7cbe3b808e1
BLAKE2b-256 f6c0f02a1cf4201c4313db256013bc332fcd0a3f6a78725601bbd839e4f17e32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 da8ad0cc2acd67dcf0506c6519904473c713eb065d0a7356149db52763d500d7
MD5 d037746d928ed92ec1393f81bd7ee2f8
BLAKE2b-256 4ffbfd6fd302593fe544a9150df8278e84a9ca912f192ba63f29b5db090f2479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92b0ffee7dbb08eafd26b8ce008b9cecae05eba9f079230bd8565acc22f2fb19
MD5 4019f6b3c6edd51aa95c33d7691e912c
BLAKE2b-256 32246632861e980622c8e1ca9020140ce181b56bffd459219321c9a0abed73de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb7a142e18a393f372ad0f10694eaaa642a51d87338f12e6d234ccbee01cbda3
MD5 eb414324eab5aaefb921aa76e4d65cbd
BLAKE2b-256 ab1548c4e92ddc19028df3d0f43d99948c0afb1d2267407da878f2029280e92f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d953ac00e7078aa5813b89b3b32b8d4bfd5c3e91c8c9c995a579149aa8660f3c
MD5 162038363213a7fbf8c5e4f08db99e40
BLAKE2b-256 a8bfe015c2610958519624b18e5f8baa63d32fb6f91bce0deb55047f31d1fa56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 296c5390e8e645848a4c3163212c39e308c8b5f8aa934e3f65d64732d892f384
MD5 e91527b9ea2da70f208f1f6026a2c97b
BLAKE2b-256 a8b94a035c41eec21cfb2eddb8191e40df7928e60faa47d215ee0ab342062ed5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73f6fdfb487a21c544298ac75d6b4813b2f422af3fcca3ee21ce8d4b051528ff
MD5 501b808d07c7673c4d007404955da1a6
BLAKE2b-256 8dc8825a046cad5000bd38fc470a56374490449194cd1b5d9788b8a8954a5790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37d5d95eed74e7ed19bdfe7ba039965c6588ae89deda6f6bdef60f4ab6a188b0
MD5 882c1d6bcd45adf177cc7047308f3d96
BLAKE2b-256 dda70a873e0c5b21bb09051c6eab086a437f240812af08844f2dcf740249acad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 48f4ba1a225126dfdf14d5053d59d96f287d1403e97e44201104b79960d04789
MD5 33db560150dd2bf4ebd8782c804b5724
BLAKE2b-256 09906f9182d54497a83863eb2b5040396bd01a195a9601d9629a9078d9e7b238

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ecbab6233d92ed9ac098ffec1fe8969cb3fca4f1bac648ed1b45cdec35a75ea3
MD5 d01731a955c5fb54d3b0e694d2da7004
BLAKE2b-256 75f1f1193188c1833041740b70abca3cb1a691f507b850e5abd91b65e6e75ac8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2663cd3192b5eb26ca8388db2fd2856904a4e77c124d5253d6d0cecfc34395c4
MD5 65dc9c8979d24f3f109cfd66dd23d369
BLAKE2b-256 a1972a250441ebd2d24a693ea67fa3e9f04689e43cd6a66550c7191ac5ceecc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b1700e3196af2149ecb6988e40ca4781d2beb3bcea4048fa1f922fd493d9dc0
MD5 7dec652ed5215d54346611de01e8bf08
BLAKE2b-256 981bc3532dee4940a194024f7533318a30ae2a4b915dba362c66f744677e3e9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3652e93a2407172d16398bbb4730f3e805f5724df97b3f15b4006588aab4ab7c
MD5 1dbbc563388974e1d1f9d14bb72bb1d3
BLAKE2b-256 a2ac7e316c946c00f957930019ae47762e3064d7cf1afcf4d421bd609f2fbd60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7093a3bcf47abbb47d873047b5df7abdd6a6c6541b81836efcd267c913acbf3
MD5 b7fe1952689c1b75cbfbdc89c9d2fe04
BLAKE2b-256 f830fcf0f18bd8469ad0046f4f06c71d28535eda8efa1913b15ad0d0874d73ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2ae46bd17e2bdef06cd5f4f2d30e7f84df11c73902b7bc9c0a785a8acf5d134
MD5 12100fd743c28fdb465dce3f609419e6
BLAKE2b-256 89ad0088116d5ef4d7ac6bfb535dc2b2ed2e5a2aed217bc5d4918459df7623df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 30815558238a31315e71f76c08a2326bcfa8a530b1947410da1eac48da8c1b21
MD5 b73dc20edd7616c6ada203b7f6c6ab53
BLAKE2b-256 a57bda1c6112a3091fb980357229c97e6dba5053fce4a8d469fc9c8d8a4f612c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 36e49fd02e2ced1f287d3c4221476de4008e7b2776e6d2df5a2fe9a80f73650b
MD5 9ff8efedf5cf0b2fdf3cb87a4e534a3f
BLAKE2b-256 934f04d56be3115b782f6fec575b6ee8bf3126e7c34c2d165a3a67cd59be0faf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 200d12901822f5a2d6831488acd543ee5ef079c400d12dd5ca8185c55fa18f78
MD5 309854f204f5530f8b4916bbe92631fd
BLAKE2b-256 653cb75127a29d05e2be5998443c67d1e90763e15ca937b70d9d9eb82f68de97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a996bc6d70f65a4571750f505b27b5db455f0e1e3ffa1c6a7a00096a8110d9ab
MD5 f68c60051146328bcad596ee0ed592f0
BLAKE2b-256 a20bd15b8159cf170189e902f867fd7da59d831fa0395f028c0d8a37884342f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2ccf136b4e0c8260adf2f5007f88a83fe6bc9832fabc61c14611bdfd626fcc2
MD5 d4a016a76705d38a59766caa7e1dbee8
BLAKE2b-256 56e3bd39fef8300bb434f2e72a4135aab8750aa442007b260810bd66f6b36f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52a25971571cb422f9299b1b52abb43b5313783bed2ee52bb5febdc7a62626bb
MD5 10220f571aaf8af650c271e36fdeebd9
BLAKE2b-256 11c90c433230d0357363c7613616ffa8c677210e45c8715a1b342cb47c5dc155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2c4a64486348abc29ee8a3577c18e6381699f5d3bed6c414bd82e5d06cda8cf
MD5 dc2ecfbf86e10b5094308e490062f79b
BLAKE2b-256 5e2055c2a1a6dc6cb0cb426d034f69364db46e72868d7eb23760f8040db01519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 76bc4dd68a1ae0277bdb978fe76e33c697d2179a31941489d09e6f3ce772544f
MD5 16c1047c30b0c69587340c2d00b4a904
BLAKE2b-256 18179547e725cea1015b207be28aac81df1c5a753370a89378a4a0410a325973

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dde332b45509ea7f56d550bb7f211d855a6bbeb124a962460650f3713367b78a
MD5 18d925140f19a974af2f80494d4a0a14
BLAKE2b-256 a7431f4cbb8aa2c648bfe7684e2277289ca9f106072521888c47b84a47cf8cfb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9ac7e1b53b1e049356fa795b724226bd9f0b9b2ddcc25d5ab8b44f8b4c527d92
MD5 03fad9db3215555ac9a5ebc5aedfb463
BLAKE2b-256 c84ffca3487c27c3fce40b6350724b02f0b1568175a1856ddc0bda95cba0dd57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 591f2b809582cdb8c6690003c7a5f3a1f5ad23fabc4b69f4ab573820a820b044
MD5 8fb910016c1caf7a45bf556ef209ab25
BLAKE2b-256 95571fb6f24ac208c5fd159a70434e40ee9b7abc0b034f79121463a6f8770483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8b8307f9334e14512a4442e3d2d6a5d99cac56477e47091cfa51e314cfb78dd9
MD5 6fb84bfda8130a51d909215c6579d665
BLAKE2b-256 735c2ba9c4e2df00cf93136f0ede7cbc1f0b8d1914bf3634e3cfe0a73ec9ef43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42c100ac4509b98c750e3e858668f47a698e7289f7bfe9f73a6e9869f934276c
MD5 99b1a88479420dc1ed596c95e55855b3
BLAKE2b-256 94be1c8a4ee746ee0890e7b81df5e9fb726af91b01dc98b78e4266864b1badc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9f4462349bad2f173be909c765f492b5e9becf0e0514a4b4aeb2cb61d82a082c
MD5 d15c11a29ccc600efe7ff25850866a69
BLAKE2b-256 3a685da1fac3f530479178c73847f261581303a2e5760cad73687ab52c086bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 ef4d354b74394322ef37dc0ebde18885f02d53e51bdb0e0c0456ce8dc5027a36
MD5 998f1ccfa9fe2bc46d6fcf758e263897
BLAKE2b-256 a3337e4a4323a789a7b199e6fc02a3461f4f0614a3a6d6235b9a067cb302cf27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 da1cd3a20281a050ac1c4d58d039723e754f4590410f9b2c1e849ab9c1699b0a
MD5 f6513d4ef95799dcd9fd94135dc99286
BLAKE2b-256 8100813a50e79ca3cc8e49d1b4ba82214ab56bfb0d1988e369be61472d34ceec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 1fa5d5c3a39659a815e1602f3d57b6a572c64fbd34e2baa11d1a6b54865d9c4e
MD5 acda78925bb0b8d7e83615976507771c
BLAKE2b-256 568fcc9de4d5ab54e0366c33c4f202ec7a6f6dbb558076242abf6c950871e1ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a8de84243af6b17547422fe84a2a3b083abce758e119223da7a885e6b6027341
MD5 d68337af1744dcc6f7d5d995b52a0bf2
BLAKE2b-256 46ac2a93b8b33fa572fa3dafa63747fbf2286ed2bddfb33ee991522f000fbc7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a23bef26118d649f1ec63dd49fd8738ac34c99d75039c733b8d9bc9ad46f3258
MD5 bbafa52de315f4852a281d4eab0a7ca2
BLAKE2b-256 4f55ac8101ecd44af800dc7a8d17c46bb472b1cf719716035db39be37d737716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f5d4ac5a197a544c8309e7454d304fb0f815e379124ed6a7c74cdc5b0085dae
MD5 a88a5b409c0bf5da80a3c258dc11da57
BLAKE2b-256 63fe0e5dfdfbcd46db92f4f9e00141854e2dce98968d4e7b54308f6960b9b701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f35084ed7ed8d3faae26ace6fa2772e561fa13d017218eb424927e48e5ba8613
MD5 88eece645a7c2a96dc18587885c99775
BLAKE2b-256 2b1730fb230bcd8bc317cb2fd70926b6751cf11d1046533280aa817da0801bd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0f061202bebbb5ac2d92454d6560d7fc7acd8031b84462aca60e25249fe5fa80
MD5 320cca90e4b6133d5bfe7568a19defe8
BLAKE2b-256 5cfee1e5532251a55e4d77b519673fb446a46df4196f0148a83c86df82dca5bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1b74c5749d55c066295325c2a594f9cb49192c2e42d0fb17bab2c9c057056bc9
MD5 4629823faa9c5eea21200c4220cf84c4
BLAKE2b-256 750a95f50342a3fba247b25bb0633e5e744da7ffca3c9ed0841f11d1b15d4939

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.2.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 255c5d073d90b39e752c76f92efae8e47b949f2d84e63ed57edfc7772e1b583a
MD5 43fccf6f901c6f97a7eee6691c503991
BLAKE2b-256 dee46716504324d03ecfcc6c500b84a20b5495a62f5ce9b83a4ad9746922ce0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1ccf99b17b412b6103696dd79a19727847cfc12074c1f6d4ce866c59d60b33b
MD5 2830d978951dc0ce249e55937917b7d6
BLAKE2b-256 f59163d07ddd8252e36618c4e8c2df209573fda449a3cdc47e901c8d8dca9536

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1df6ea12f242323f3fed9522aa9af5c3b2785793f0d45d289f81e7694e5a99f
MD5 f6a7f38ae421449a30df273226dcbe57
BLAKE2b-256 291fe704446cf7df765b36e92f6d08c02227a9c8c98f5ba1009e18f0902b2dfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65ebce79f478784b54fbeb8a080005a516a9e5c5d453f3f1a9dde5cf4532d10a
MD5 a6094d9d5dfa66586369865f0b6d574a
BLAKE2b-256 2d651fe5a60973ac6e72fc25b8a6d24460cbf30faf683ab9176e01c519a6d11f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 983400e5139ce8c7973b4f0bcee7990ca78017e8aec9fa2d8af44387e268e6ed
MD5 cabd89ca2649ffecf16d44b216b2e964
BLAKE2b-256 7d3ab14597debe29a0767bfbd92c05363384df8a5f66c3e3eae9cf8abf565c6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 89406f3bcddf21e44591aa24d49b44ba5ab819108c88bd9e49dac4503a18aefa
MD5 a0ca49b4e3309ed764e297bc94b65567
BLAKE2b-256 30bb8bbacb41d68d386598d7aa27f2492216a061ba0ababef3f814e80a1d51bf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 73e08a21529e8ee84634f1bc8caf93149686f8909107c61b7c3e432d14173d31
MD5 1eb385e09f8e4c432ed6d6b490dbe013
BLAKE2b-256 11ca80827e80f94551f8a2f280c96ab5baddea71f1d59972b01c84e7385d29ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.2.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 31eae220dab33d56be24a54399943ef0408546f915b83789be5c04e750b3a234
MD5 3b9a1c66f1c0ef469bf49183a30835db
BLAKE2b-256 5073dbfb4937bb6424d3c08a1ca1aef225dcaeca41e2ca2fdc46d515cff0a516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bc1adada19ccdb31f8e4e3fa32638fb626c7a3da3079b00a306d5195e8f2728
MD5 3f18575345be23f548a2ee0d6b09a27c
BLAKE2b-256 a18374f4abf7ee02bb18c26815b8ae5136a20905bd577983dcae883b83d4297e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2b9fae58cf2bdd3dbb0854f60e01e780e2f5733366b4ec004106736e63b3530
MD5 03a0d7907fb21aceaad5151798a6c165
BLAKE2b-256 43e78f9f11de78bd3260c9c08bcbf113f0f7e33986c354c5baa88e8839c934ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9d124d81896b6160353098dee9f49f3f058564f27a30706d2861a2de89fa0a05
MD5 56784707a3f8708a3ac0cfe77bc2f476
BLAKE2b-256 762c024414a658481bfae5e3fd01f8f34aefa9eedfc28048a5e4ff250de01c8f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.2.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 9e077e7e374256deae3488f4304b2541a778320718a37129a05d7b69073ac18a
MD5 7083d12212279a1c8ae5f594e4df32a3
BLAKE2b-256 fe3e210f80046f5c734778b16f042ba9ea3b568c60c32c5bacb469d6ddc68522

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.2.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for polyscope-2.2.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4a4f07947391ba8fab35299b59e598ee77456749f8396339c3e18516fe162761
MD5 a40dff6300f537422c906d25c368b068
BLAKE2b-256 5bca297c76e03a527323a37a2674cc0f4ad52333c742c6ef0ec8b6f1d898baec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87faf7fec42a673a4e468229f4beb49404195e3ce6ed5dce48a4d47b8646cb7a
MD5 34f34319ba15d3ff32fa9be0191ac10d
BLAKE2b-256 acf5f8b615d345860e56158828e54d948d9c8e1b21672caadf16d79d34352992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc77b0a404193ae1277ed34cab5a251f76a6c618d40d40de38f3ca797f76cb8a
MD5 97ab60ece9e460d627e5efd7dc4b82f0
BLAKE2b-256 7ad83a55e07670ef114448630e34cebd6e755f7be3211d45e8c23e30b4767733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.2.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1883c7b30b93ee9d5acacf230734130527568c382a44937d0ac97f9c2b8b4e77
MD5 6d5180d655ff872178a871f124a0d676
BLAKE2b-256 ce96eb05e6dcfd04a6f2cccc267b2b5728661c306f79a3450b5a2710fa4a0568

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