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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

polyscope-2.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

polyscope-2.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (3.4 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

polyscope-2.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

polyscope-2.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (3.4 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

polyscope-2.3.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (3.3 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy manylinux: glibc 2.17+ i686

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

Uploaded PyPy macOS 10.9+ x86-64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

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

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for polyscope-2.3.0.tar.gz
Algorithm Hash digest
SHA256 41f2f4f02c1feb14475e8293c257690cf2f2f64ac2683ef7b8844dfabd9f44a0
MD5 e9bd7a1977935965f4f623dd90ee0839
BLAKE2b-256 a3c74830f82869aacbdda01acfd9cfaf5d11b7be006abc7e5306c44b6ab8d4dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 da0a9e68dd6b0e21705d720a83b3f6fab6ebdfcd85766f2b068ae88f12df08b7
MD5 af499d3a9b54c78d6fb493a9c22533ae
BLAKE2b-256 a3a8c18930726ade21040f1e4effab21e2b67dbc38b2aed67cb56292e59101f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebfb394b9eae83c4e7043dfcc45a0578cae72995baf796455f2f6d27fafd9d53
MD5 5cf1406ff2081bc6ac316c94e787ab06
BLAKE2b-256 ea95925cacda27ae977e50304dec3b84fa93e1cf6dacbca159d8b5ebc5a4f4e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2dbe6f5ebc14077b73381a5dc72ff5c865ad91b9bc337cbc4feca6e3a1518ded
MD5 bfe8d56dd42613712aeb8a7050d4b83b
BLAKE2b-256 36416aaf2e947fe1ffbc433e40090404d1b19ce70db2f0a6cd3e8f1a317d610a

See more details on using hashes here.

File details

Details for the file polyscope-2.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyscope-2.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 250013c7eff09851c16b137d907310735a1e14c077d582c9e38764743481a1ab
MD5 6cd6f0cbb97673e9079789ae762f520e
BLAKE2b-256 9d0dd324c69ce975b9f340b508697cc981363161c74da8fdd67c4712d06096c8

See more details on using hashes here.

File details

Details for the file polyscope-2.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-2.3.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bcb9c5054675b25a0745e2eb5b9b61d63b36d23a2e01d444d49e51a90643efce
MD5 aada153f1d8b0c504f1d8d89c10c6659
BLAKE2b-256 3be22b7f1a5df06199a806f301446898a159992d4c64f9f593c216a5473a6bb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4117cfce5b4c834a9a8478e63f3c91eb121b635c31417bf741608860ea800ad9
MD5 de159f61be58aa4947f7bf170e7634af
BLAKE2b-256 cc3f83ccbb791e9a61534017e35ebd7cd31a47e49392782773fa95429acd62c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f3e47e442db68c4c6a04caf6bfa31c8b1890e6d0b2cb1e7ff116832b13e933c
MD5 89a1f61a41870975edfa5a8110dd36c3
BLAKE2b-256 d23ba7c33309447a952f48425a602cff7a1c0355791b447cae9d1b6d73ff3bcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 392a3b3717aebf0ba48706430aeea36bfd39c92f86511554f4db02850447fd47
MD5 61a664cbae2f5791fc03ed947b621de3
BLAKE2b-256 d60cef473d749053fcdce41309a9c35b3fccd5dc54f7aa1c60ad819d118210a7

See more details on using hashes here.

File details

Details for the file polyscope-2.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyscope-2.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cbccb82cb29a233f622fd6a78362642babaddfeb2f0b252d3ffbc169725a317b
MD5 1776dc905852118a73243dbe3249f57b
BLAKE2b-256 6db8a05333175569e93977ec22019eeaeb2555de8523343a95b710349568453f

See more details on using hashes here.

File details

Details for the file polyscope-2.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-2.3.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ee2ce521bf1307c62f98ecba61b1713761b01b3da99716499139df6375dbcec9
MD5 09d33bfaae760ba9142d767573809af2
BLAKE2b-256 7b32e0ba5041edd2f809f6b64b0be67ec0f1345f35e0cd040f23a4665a80f316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ed5c6d8c06dee2426026adfc509620bdeed12138df79d6e32fabb5739bd8f14b
MD5 64f13e561eaae066fd042e30ca3af1b2
BLAKE2b-256 fcf1503f19297a2899911e082022ff95d9b198b54dd07a235d51d89debd8554c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7485b6560980d0009ed6edf6eef10707bdb8742b99e4b86cbc6ef05429044c5e
MD5 e94ff75e7e858752aea85b3f017a4319
BLAKE2b-256 0b8c368124c8c0f2ae4ca38a34442767b3f74ccccbd8dd1e56c86ceb1721ae0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 26e0e42d3b92c3e2c66599c612b0f78f00295efda5378920a03824368f72d7e5
MD5 f67d2404cc767c020f163f9fd15d4d24
BLAKE2b-256 c233dea02efe8a3ccd9fa5e158e16e804b4909fe389b5a80c295fcb49f0fb332

See more details on using hashes here.

File details

Details for the file polyscope-2.3.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for polyscope-2.3.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb0cd0fec5816031b8a39941ef617a44cdc8d8d50fd5339dc8befd9250fad588
MD5 1a0a3c61cecaf50c36dca3a9377070e5
BLAKE2b-256 5d8c6cda285084848f1a9645127b0a6a0f605efd0d399073648062b72b167a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3aedf97bdf05f57e0563905936b463d78c11d408e80e20e2e7dc3d1337c37dcb
MD5 fc0a582799096c210e8915f458769b3a
BLAKE2b-256 b1c84f4fed8e7cc2056ee72601ab4542c90c9f41b197a30ec92426793cf1651e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6d94c6952ce0ef1d57d2705db51d2b2604eacf598d40a1e5ea2cdd66395a32c4
MD5 ed6d182feeca544718df01604c649ebc
BLAKE2b-256 f9e0697abf2cb2897be9cc441279d7dc4767877d8821332d6809d10440723ab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98dfab14f01b719a7d35f0c5bc62015a7ec910a043344fdc6b801ba8abc092b8
MD5 64fd7a0287381baeff44067084bacf94
BLAKE2b-256 49c2b06b5a8d4614397f393faefad7883041363a1c69083502afb03a34c6b5a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c4815cfe5e77ed2411249ea7313f8e6d33e726bf980cd98fc04b44cb1cf4a58
MD5 cd0f065de2495390a8892748928cc241
BLAKE2b-256 a0e153aebb13223d387412782b9702b70ed66741e01f61f6fe71180daf734e22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db3c757182b922d2fc76e07408afd8a36e6f0168a195b67f09114cb40aab5737
MD5 e84afe53f63492dfa9067867e704f72f
BLAKE2b-256 9ede5d552ac6997e4dae200605a282d201b6f9776f4a677752226f26d5af3a56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 def962bc5ed1941d6919bc212514371c8c8bce5b3a0aeed3ddce7308de21f9ad
MD5 d8334952991fc2d2c114a5296f6e4962
BLAKE2b-256 be513a39f915beaeec31808d86583b4b121507582b8bb83f6f9055dfa0f0aa9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.3.0-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.1.0 CPython/3.12.5

File hashes

Hashes for polyscope-2.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 80ab650570984251be5f7fba8b58ceb48c842616515c49ca06dda2a6dc81e27a
MD5 e45d81b18c156a3a4cee5179cbf1c13f
BLAKE2b-256 45f43b8051931d1084b922abc30da824e1cd5d55b85412f61c5884250501be4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8189ac8b4285a1e90023f00ad2938e2e9f163a1de668451445ee9b10c3ef62d
MD5 c26117b9cba0cde7a00de4ca075e22ad
BLAKE2b-256 fd3525f9b00910e6c2693e05fa09f06fbf1f6ed80de71c46d955bd943f8bb9d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73b03b93062d1f1483f2263c62f783dcc98c9a0dbc172272312098117bf87f0b
MD5 e7ae5cbcae3da65ba0168423867eaaa9
BLAKE2b-256 264a7dbf6d9660e5d8f44d235084cef7a26de9a81c69f1236cf950dd6c7dc188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd339ba0326e10dba76d77ca5ec5f23ac67f2848d5749f81cafb0efca3dddc91
MD5 e212383a4179a594cd778c916427e5ed
BLAKE2b-256 d8d1b95d3b5ed4f1c1010f3cef7015e05cd0b324557e5ac05b543e541f23ee5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 70ec4856600076d50254ef7fd5cc1286bc1869f9b54be247c5d5a899636c0a1d
MD5 5b8de419558740810e53c8f1d359935b
BLAKE2b-256 8c0531b094f64812c12299ef5c84141160da275f487749a31247d7d0827b0df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp312-cp312-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f8c06dc9b895c97fc31a6999197cea4539eced48d1da9e6364a7af9f8930e458
MD5 83270a250aa21ab99d35e817d0de2366
BLAKE2b-256 78730fd2e5de34cada017314885ebb14aa54c2acec55238f7cfeed03c36bfbf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e415b81d897ec7740dff92bf6f76e10a549f15383f639dcd50a4d00bd6394d7f
MD5 acabebf04930f473578b6de3751e0c8e
BLAKE2b-256 62504d5da56d8e021eb105f2b1a09321bf26f1cce4c57e230a51b4a2cedf2bfc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.3.0-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.1.0 CPython/3.12.5

File hashes

Hashes for polyscope-2.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1827d48a54f24e5a170df245f3fe5207097fb916a52f4b6617c83fa44d95c161
MD5 8f18110b32b0fd58487db5660a76a94a
BLAKE2b-256 0073de10347ceeede1304d463139193c456da3d0b13cffb11b071f26e3206268

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7aca024bfc62ebcc1a6cb29025b62029a2fb373973315387f0f5545518de34e7
MD5 9f8aa91748dfee2ca79da48e1d4b3d95
BLAKE2b-256 7e5eac1b7ec27af5d87652cfd4ae1a1e015b8a757acbf747e9884986bbb5acef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7956f9c56ea031b1bcb93025ee9b019de12b1ca46e1199a5af43e9997480ed32
MD5 ff55d8b71968df50771827d14a40cc6e
BLAKE2b-256 bbf39fc489e46ca1507e046524e9854194ec819fab215276430858744ef0ea5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e2069bb30992cec12fd8b5a0829b64d860ed303494ebfec0cf6ac426f4c7eec
MD5 b2581c7165d7b84349b6aaaeb6758b17
BLAKE2b-256 772da75c55fc30d2bfafb219232404f0dd26627b7979887dc9b6db74ad110be6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03e6c56b5c7424995ffd6aa67d89eb3faa9122675aaede614bdeb5468d278e0b
MD5 1ed5edbc1525f73e5e1ee9d976683783
BLAKE2b-256 21f85ef54cf9fbb297ad87ca4d22bbfca708638ea85d0beff16958adb3b79531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 02347d6954dbbcb41178bee56db5e24f777652dd42ed05cb53e81dd470b6aeb0
MD5 99fc8339c46a3d4e13c96071e16ff402
BLAKE2b-256 acf67aa8b9513ac8c25fd4bc63cd6062d9fb931a9cb6893285fe99502c6a7fcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cbff927677e3db0383409c76937b5ebde244b2ba035a540bcad5747b56bc5f15
MD5 a88c6161a745ea093f8f871e38f39739
BLAKE2b-256 22660d5a6472cd7ea6d2d4017f94b84b001a11d030df4b14a6199de57ba443f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.3.0-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.1.0 CPython/3.12.5

File hashes

Hashes for polyscope-2.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e3624f6378b53b6199d3439ca1e35b3fc482a9a6ebf6261a793341d67354ab6e
MD5 c230c4d9a27e48de373d6bf3138b2875
BLAKE2b-256 6e2440ff29d559da2f242fbe833e4e7f26c98e49a96b65371884b522197e0d43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c2e873b81d9a345bd07a84e4bc6ee589187cdefddf9b56d36a85a23729971d7
MD5 cfae617dac44dc6b4d840c49558087e7
BLAKE2b-256 177a1a69a0b2856c1419ddf09dedfe892678f6c2e4adff0307cbd1377fa2290c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 823e90aa8fac178710755e2cd2104759e9527c1651cf36735ebe549f9739649f
MD5 532eff68462b8a2fa365132b0201b08d
BLAKE2b-256 75dd93b2a8a89a8e5c4faa36cece81ad5f4a0d095e332ed276dc75419f677910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb6d339caa146d016c1cf14b1a07f0477a70366186ef4d79a5e4930765f1e50a
MD5 697afefa249592c05ec20e1fc98e392f
BLAKE2b-256 03166cb148a63108728543723228e88da7872469f7c933e9f798031d4cfe960a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13cc85933cc8bec70f5b978f5247aec693375584d691f28130e17aa9b0e5644e
MD5 f6428155a9b373b8a975c632b16bebc3
BLAKE2b-256 5345842360605db53a1ca79f19ac29883c276df72c506518f3b5b00c4d1e4659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6b6d74b5c43b358c0ff77fc4167dada38d142ad3c16814fdec7a79ed1ecc1454
MD5 b90f171732dd647caa7c77dfea4e8c40
BLAKE2b-256 1aab576ad483e52b167969e6f86a179dd9bd79f22a619bf0e8d7cb39adea2677

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.3.0-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.1.0 CPython/3.12.5

File hashes

Hashes for polyscope-2.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 722b96f0594ef5beb88e1f9e9da65f0e42245ff73a0ae02866bd50524b0c1a0c
MD5 5f11d58ac2fd9b4e9b770aea557d3f06
BLAKE2b-256 005ba6a75c3bb885d0973f31df110722a1753be150fb5ca97d4b6cc77958d0d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.3.0-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.1.0 CPython/3.12.5

File hashes

Hashes for polyscope-2.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0071405dfa1b88d51ccefbe2164b55a5aba5d4f34b8275fafda3050f53eaeb3d
MD5 907b836b47286cd5ff8273128a5d7ef7
BLAKE2b-256 301965ad80bbf2f4a49c3446fd8830116a90d046d55dbb48590d46d08a81de5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01414d853a73feb6e2ecc44a746f1f18e000d6846f5ad51294727a84e7aad5eb
MD5 91cf4acdd8075dec8c8066c61f6c7054
BLAKE2b-256 a3556d35542ee3253fd21faeb8b24ca00ac6af800ae0bcbd93f76f5a8f25a2b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 446a2055c326b361ac094566269f4357ea6fb6962f0126acff367a3eb14c6de9
MD5 3da71fc6186c1a42257728850301a320
BLAKE2b-256 48fa0bfba3a6fdc70c9cf735a82168fa4b33f3277cfb72b0337722969b6c6739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2248681dafe6b8f66cfc3bd17f90d57a94744d3336b5a229276d9071ba66d05
MD5 7adcf12d953ae63f1aa6e4f0b3381099
BLAKE2b-256 d82fc18d37aac0093c3eaad0d4d3e6e1eeb4edfa7feaac9a2ae8215d5e3ca505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f04d5c4ea0a2fd8732b807a002df8cddb8ca2b45183796b130784c66550b5832
MD5 92864558161a9b859c3fae611743e3a4
BLAKE2b-256 e4bf114bda7bfb6629c7db03d4d924e93d071978d7597e0d478fc135e189f08d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 bdd25c926d6003fa12df059805b07efdb795fec6063be2b38b397b6543aa583d
MD5 8f6207e808848510e0bb1f8c12a9e366
BLAKE2b-256 4b0114fd2a2e3cafcc5be6f6322826c100e59ff9a49e77917b1bf659aa3ac6db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.3.0-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.1.0 CPython/3.12.5

File hashes

Hashes for polyscope-2.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8d0e87424aff9d3956b75abb6cd5de8c5966d54252ac2926d2fefbbc88267964
MD5 3a192f3f56b48248dd19bbcb86331ae5
BLAKE2b-256 e5d6863becff85fcfc177c9cc6d4e91d8503b574ee0d162566a2a54b138b98b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.3.0-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.1.0 CPython/3.12.5

File hashes

Hashes for polyscope-2.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 659937ad282dca0839c5b59285e10c3f28907ad76b956403b6dc90a08dd28d62
MD5 0d31e53e82c5e903b3daef3441a67f18
BLAKE2b-256 951f4de5c70d55f5c0d1082ae2d8480e3304c0ff29a79d4769c527b1c770e90e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c06574b9f8e95516bd927217b74d2ef99fe66f791cada9672dbfbdc3724900e9
MD5 935e2372f61de2ff40583a4066a3e47d
BLAKE2b-256 a9f78758b29a34ae02b6080789d40ff0633d1e08480f3c17aa98017effce50d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ea75e93c25f70fe9763d8886f60ca1d67a4d4faf3eb98c516d3151babb279b16
MD5 d632e856942c0a4286fd4628f5d0520b
BLAKE2b-256 79d77d237a269e4dbe4097bed2766bb11ad65ae9d7a064b751c931b7683a0b6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a286625622f3f35b8d78910b3386b8a9c275eca128b699f859656133b094f6b
MD5 bd61d5e9ca9b700450b83d30e4ec6c84
BLAKE2b-256 9619b8f28f70d0d59611b1fc354158aa0eb1a08c6705ca102e497bb9316c8edd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 21a9a3c061e6fc0cad3213480c63928d1a8137f404173869c6e898415a633d13
MD5 91e575a42bb37c4d78901ee23a447bca
BLAKE2b-256 88df78e09e37b45668e59bfddd89e6b94f225d924eaf2e4655796e3cfa265bb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 4432b4870e8e0b08226bff1bef91e042114abf3f4f333d466c777a2c2b318d7d
MD5 2e1bf2f86cb08f4f4426dfc1d1b806e5
BLAKE2b-256 576de65782fce8542dcccdfe0cf3de02cfdd1a0ee360a158b53ef8c846d10306

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.3.0-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.1.0 CPython/3.12.5

File hashes

Hashes for polyscope-2.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4eec92f6e3300067c663a51470ddcb836527417fbf2f2bb2e598ba609570d127
MD5 267736b77a74c8935ceee28d79aea955
BLAKE2b-256 a23abf5804f011d528a3e704f080b5cbbfc9eb882cfefe1720f60ecae7bbeb84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.3.0-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.1.0 CPython/3.12.5

File hashes

Hashes for polyscope-2.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 48376b23ebe9684fad869cce945027f049363af4354f85c339e3a9d74c0f3fbb
MD5 dc134d4661b0850888981e615a7a11ae
BLAKE2b-256 eed3798a6783d8a0661fd84718493e9b036f5db76cbc2af35eddfcb5719172a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7991a21d34c15aa99684c30c4219aea557e5c2bc71b1513920a4d1ed7e3d3ccb
MD5 ed123199ad090d6d3699c5a041981799
BLAKE2b-256 973db35e7d4bcd6fade948b2a1b263ca43428cc781d7aec3c02e4a931d9d8a0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 897c383eae2c0422cc378fe2398b2558aaffc3d6b09b05522b27308d1adfd913
MD5 21e26171a44f511cd30d112d5a9dbd29
BLAKE2b-256 5915fbe5457f17c2d2047ff8202f0b322c74593a6f437b1d94a5c704114176a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3003401f96a7e5e93da76911044b64fc6d31f837a4dcfa1b5bc22edd38a31e0f
MD5 ec0bdfbfe0396464c1bbbb4ce518853a
BLAKE2b-256 408d9569418e2b5e22c8baa59e69bfc208a6952eabfebe3c7840facae092dad3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.3.0-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.1.0 CPython/3.12.5

File hashes

Hashes for polyscope-2.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3f25548f53e9dc441ee6cb69e175fbd942777a9f2015d38fe90f4b527306d6bf
MD5 1fdfff646f03b79384331c5270e40f00
BLAKE2b-256 40a63391174d7572f47b2cbd578a3143e3b9de5e530078e93e8b755d9545be59

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-2.3.0-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.1.0 CPython/3.12.5

File hashes

Hashes for polyscope-2.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 02e938ff41729c4bb1f27390e786cae4fc56519ce002f67a6411e3299cd914ef
MD5 057420fe4da2c8209bdc7b62bfba4927
BLAKE2b-256 f52680455ff1ef008481c62de03f59c0d9300b2ebd4245905957bcd99cb7b5df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ea416f3575fd6afe8c55140d086e0feca93c243fc0e70c475146b95efaf9a89
MD5 2525cb965be6e31dcf3518bbcd85dd39
BLAKE2b-256 8ddef88d5c9a36a7a1f382d954636c138f68dbdbd7b1c0b2882643248b42729c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6a757b931823854c68fbb350839ab0ec8c272aafd2cca47c68412e2ea13a3e13
MD5 f391ada4eb4f0e949279c7d18c3adbbe
BLAKE2b-256 0f4725d331f8ac9f8c071e6d711c68f8054076c97af01377cc887681d0bd7cd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for polyscope-2.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 88b06ea2e36c11c90eae8c38d60fc6f3f50652053626b01815e5bfae32a0373b
MD5 ca36d3aa6d1257e6f685a4a2bde5eff6
BLAKE2b-256 f60233b186bc00e1d7d5974707cc4b6d8a5afa72558c1a3c7dbc85f313e328a7

See more details on using hashes here.

Supported by

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