Skip to main content

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

Project description

Polyscope's documentation is hosted at polyscope.run

To contribute, check out the instructions here.

Polyscope

actions status linux actions status macOS actions status windows PyPI

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

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

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

C++:

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

// Initialize polyscope
polyscope::init();

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

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

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

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

Python:

import polyscope as ps

# Initialize polyscope
ps.init()

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

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

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

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

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


Author: Nicholas Sharp

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

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

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

polyscope-1.3.0.tar.gz (7.5 MB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.9Windows x86-64

polyscope-1.3.0-cp39-cp39-win32.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86

polyscope-1.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

polyscope-1.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

polyscope-1.3.0-cp39-cp39-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

polyscope-1.3.0-cp39-cp39-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

polyscope-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

polyscope-1.3.0-cp39-cp39-macosx_10_9_universal2.whl (2.6 MB view details)

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

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

Uploaded CPython 3.8Windows x86-64

polyscope-1.3.0-cp38-cp38-win32.whl (2.1 MB view details)

Uploaded CPython 3.8Windows x86

polyscope-1.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

polyscope-1.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

polyscope-1.3.0-cp38-cp38-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

polyscope-1.3.0-cp38-cp38-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

polyscope-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

polyscope-1.3.0-cp38-cp38-macosx_10_9_universal2.whl (2.6 MB view details)

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

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

Uploaded CPython 3.7mWindows x86-64

polyscope-1.3.0-cp37-cp37m-win32.whl (2.1 MB view details)

Uploaded CPython 3.7mWindows x86

polyscope-1.3.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

polyscope-1.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

polyscope-1.3.0-cp37-cp37m-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

polyscope-1.3.0-cp37-cp37m-manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

polyscope-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

polyscope-1.3.0-cp36-cp36m-win32.whl (2.1 MB view details)

Uploaded CPython 3.6mWindows x86

polyscope-1.3.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

polyscope-1.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

polyscope-1.3.0-cp36-cp36m-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

polyscope-1.3.0-cp36-cp36m-manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

polyscope-1.3.0-cp36-cp36m-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

polyscope-1.3.0-cp35-cp35m-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.5mWindows x86-64

polyscope-1.3.0-cp35-cp35m-win32.whl (2.1 MB view details)

Uploaded CPython 3.5mWindows x86

polyscope-1.3.0-cp35-cp35m-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

polyscope-1.3.0-cp35-cp35m-manylinux2010_i686.whl (2.8 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

polyscope-1.3.0-cp35-cp35m-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: polyscope-1.3.0.tar.gz
  • Upload date:
  • Size: 7.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0.tar.gz
Algorithm Hash digest
SHA256 63cd6583da984d817407417a4c3f4075de094a9f712b39a6a7caf24fa16b5659
MD5 06576d1b7e3559d800843686842e37d5
BLAKE2b-256 8db6dbb2768779ee58b2488ccbff4f2ca7e4de9b6f73df6e762750ca1e93b873

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9825f561aec99e450e8e4c98c62f4779fb83f96e11103e900f62479609a96181
MD5 3187acfdfb5403646506c695cd2f0ca2
BLAKE2b-256 3bf025aa703fb09408e677c9c26f58941f664bd8dac26539b17c809d634fe150

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fb6240ec3e54abea0e16d0d5cbf655a198c0fe5b8c4adc1bdd06d8ff0732efc4
MD5 f072e60f4e5c7eaa5d81e4f4217872f3
BLAKE2b-256 1bf9983c52e1d089a38d13f1a37d26e26ed74c7488aa138b5a33542ce3c3c2d1

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.0-cp39-cp39-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 e8c698e1d458061b3e7ecd7013abb096a4bb9379b514caf6719aad574fc82c88
MD5 f3ca7438bb26336eda6d0fdf224c779c
BLAKE2b-256 0ee4d17625291bebbf73db0f0fdab0aa7d86c3eb1402b9f94380de3b139080d3

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.0-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b86bdd7f5d4847aa78c216ea96acf41a86a538cfea0dfc89adcc5ea734b0d73a
MD5 0124420e0091d92610c8bd6cc1eaf54a
BLAKE2b-256 0f7bf78da391a65e2562fba5b3f65bea6f36d51f28ab06efd1422fe92fbb9897

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.10

File hashes

Hashes for polyscope-1.3.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 ad02f9f9bcd47ebb99e73950b6f54307b29ecf4d3914442cc2136d0f8f67d563
MD5 2c4d5c8cb1c7e35f3426d30f62e22f46
BLAKE2b-256 78c79a500f18387cb24af8cf0e8ee6ba3f27c4b847b3231abe6e138f96c199c1

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.10

File hashes

Hashes for polyscope-1.3.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1efec4dbacb3792ff5a6483fd6b66cc12b1c5dbf001489cd00703fd73f427be6
MD5 4626925778191351d52519e124e729a1
BLAKE2b-256 dbf9474f3643f32b6a02b648b7efa34326f4396423682cade691ad5e939f9437

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8377174662586799b68d62a9580b510d04e31f0ca114e11b0599c07b293ebf3
MD5 f82b173e2f3bd350ca059453d403f49b
BLAKE2b-256 07c28e5f4875a4e9a0be7e0041fc79b9dece124ce914f6c7d730d0de11a11b13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18fdf5791852f897fdf631fa3dff0226bc43b8cdc7c420e2056035bc066e769e
MD5 1a8450b69b57e681bf90c2e4169cb3ac
BLAKE2b-256 7502d837f123a7e6c98dec694e37528cb4b3db2c8b2a30773deaea6e689dd22c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9f10cc806f5e4f35d62ac33d3c7a33dfab4fbc3c35166dbeeb1999dc5eec751d
MD5 bc36c222b22545e316e5cc94dfa8f695
BLAKE2b-256 88635a4fb2ac3620f9549868856dca2ed9c45a0dfd53fa2c57e2482c5f8e9775

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e63f294fead50f99895020cd494c38fa2fe6a2afd11a472d75262442a1d9dbc5
MD5 2a3961d0ab8ae9d0062c774d3040cdb2
BLAKE2b-256 030ef24d8b45a38dd6be5fd1b8fa889e5d5971e0f0d286d5bd1c7f97faa03d49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5fca3548e2ec720606c762a520b72b3d6d404b61765a1ddf2139ebab39e352fa
MD5 50e246ad0e2961c0278f634db6a0479c
BLAKE2b-256 10a1ece1023cc08e5cab99cffd37cfd207bda14d7a58dcd6cc908ade7a2b44ba

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.0-cp38-cp38-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 36fc5441693187bbc2026faf126cf09e88a0a4bb4a2d9e2d268a466af5d2b090
MD5 3cd872e0ad8defbbb825bcd8b21f9c3f
BLAKE2b-256 4a3ba4a715b10ae2e58ad3e41c762730d9d67d2bb880722b68b164ff359a144a

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.0-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ae4ad4d37f2d8aeeda7c4c3ea72bab2586846b580e7d901e5239fe6e720416ce
MD5 063f60d5393893491f1401485902e57b
BLAKE2b-256 3f6ec455dcbb6ea56bc4d2d3d5813eed748acd417821069bfb2c4ca865bfd694

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.10

File hashes

Hashes for polyscope-1.3.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8296724fc29b7b60bfa695fe977002116015effd88372c1d547552bee684e598
MD5 78c2858085e4939bca6bdb04d029ed43
BLAKE2b-256 79133cbe1fc845f36717d6c7cbcd2d74e904422b8e304d8ac760588a9bc21c94

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.10

File hashes

Hashes for polyscope-1.3.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f9045fbe2d8a64795044519d7fb9ec459f169ed99b516fc335edc4412f2f548b
MD5 5db8a68b8b7d0ad0e59e9471bba2f69f
BLAKE2b-256 c6f5a2342d4ace5a980d81cba6a33001415eccc3ed7b682f4be562b63281a6d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec04ba93e049aacb4f36d971beee5939ce1c23dd2c1622cbe403b30bf1420adc
MD5 0367cf28a5b1b48800b655df7d8d06ef
BLAKE2b-256 b323faf00a5336cbe5e49f018234fbfb2265a39f83eb43e7660fd81507c3c07e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 10c0213ebdce634ca02922c42debb7ab4ce35cc5966aa5d51df5c948a7242ba9
MD5 8ae7ea3af0c0eaa3a6e23321bc1c5471
BLAKE2b-256 aab861eecd12e32dc1080d4c76a8ad3ecde26d88f53d884b83f91b48e46ef5e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 6bc1280153b0bed58de99b6c6a58d0658dc103860f2dda59d3562be45ce47086
MD5 e65a5a025c1c9ff0f70c32d0331be958
BLAKE2b-256 784246280e608e0d277650741276b912fd10ba118c1ffe1f65711e7413f1af82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 01b86f8e7d7c3311f0368042b98905e30e4ff62431638698cf3e31bffb7c8a61
MD5 235b396cc01b3ea0fae766f81f3cde91
BLAKE2b-256 16c51e7ea145cfcea2c43bd42af9d5f6bb1c77847210df3796b7021e683751e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 08095c365faf023edbaf7ca63ed2f49d5b4341506cb9abaaa45414cb79c5f61f
MD5 7a896aeff20a2e799c9751a3f9bc9389
BLAKE2b-256 47db0f7c083ea29ccdd1c3451e1816c3c4a046cfe4500afe6dac0fbd006fae32

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.0-cp37-cp37m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 377ef4a98bcd8c4306de115fad6c801489030af729a495c61552ff47919ffe91
MD5 27d4421ba000ef6ed2efb16f233b3195
BLAKE2b-256 6d960547b7d5c8f60d13767c54ea445e7832434f57918e5406b0b3700162591b

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.0-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1fa5af989d76c996e4310a6da9358ca8d06a0255d0d2d113a32418a5ef8b9025
MD5 e129e530c955bc2f46a9f6720dd32f28
BLAKE2b-256 f636ef37c50f9fba4016b50c65a500378cf5593d0a92deb75f51391342d5abf7

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.10

File hashes

Hashes for polyscope-1.3.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 8f27bc3f6cd230f74119f5ff5f0a04af550f5468e454247f623780a0dfb7253b
MD5 0012f1e6967b40130d4b1ef0b7be2ee9
BLAKE2b-256 a609e1daf535350549ee364df114e662856fe36bdaf7b17c050b137893a22151

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.10

File hashes

Hashes for polyscope-1.3.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 be9a6a31b60f81e774b33fba3cebc796455c7eacf3c9f14f9d40017ef3998519
MD5 7394b134fc2b01e71df76b0154129324
BLAKE2b-256 d005925aa80741c368dea6403dae1bb0bbe1e269106c462ea4b8ab620c25f212

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f5231341700cabbb8c2168ce985425f98480f01fbc0609ac5ca1b7a8b3eda0ea
MD5 959c7a9d70fd02fab0a90fee7da1df40
BLAKE2b-256 34dced1df3f5ec3df93f959a7a52f8214df5fdc89eee3f09be3f53764724735a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 e79b0d55012b20b581160626a069bf1a21be2587335397fe6b6ab6eac0809c90
MD5 5235c2ffbeb7026889f9f642065ecd7d
BLAKE2b-256 16050ced9130a2e723445906f8fa7743f865bc384f243fe566381e6fb72205b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 646ea78376df3c71ccefa2a49869b7536b893b11b6de447ae5ad3ba3e1daacc4
MD5 e86ba9a9367ffba9b08e8f3c6aae7cdb
BLAKE2b-256 c652912ee230027a25f50ba3f412965be188617b1a65fa3ec9ec54fa2727bbcb

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for polyscope-1.3.0-cp36-cp36m-manylinux_2_12_x86_64.manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d8044d8dd2b224e6efd9fd095449ec706c62a4b2f31e27a8cefc154908558a3e
MD5 335bddd7cebaeaf13584ea23929b746b
BLAKE2b-256 351ad4137c0a6893911bd83151187be1b46d89fd607b2eef842887766fb436c9

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for polyscope-1.3.0-cp36-cp36m-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ddc0f1788183dc05f9fcb1aef5b369047b3cf985dc41eb63edc96839f1e6dec1
MD5 b5f2ffe01ab6ec11d06dc6c6dfd332cb
BLAKE2b-256 f084f4304c81d38682751bd3a0132ece81e953d434442365374f574327b9818d

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.10

File hashes

Hashes for polyscope-1.3.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 d435721f27070a40ceca106a682b6b8cf53a98c774d39ae37f88855b5f415dce
MD5 01bcf6a6feee1346de591f611f102bdd
BLAKE2b-256 3abdbfd9cbce1b5774e76b5aba808778a4fff8a04495cdf8da5aac5327d75152

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.6.1 requests/2.25.1 setuptools/56.0.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.10

File hashes

Hashes for polyscope-1.3.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 90e787cc8d8e863a10cd1de9f76000edb16cae93335f7830a092847efcc1c1d3
MD5 19bce17d55ddf3642b79f59f9da341fe
BLAKE2b-256 0396d1aab929aee8ce8b045ac1b626bcab96d7793b6a30d74f1cae7417e5c83c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-1.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c22b1ef1cd87f288ebc2a8d016c72bdb9cc6adafaaecb67f352b2e872b710c2
MD5 6d64a6056513e96bcb5edd8677f376d6
BLAKE2b-256 c4c84607affebced7e08e95b5ae8795735154c4b5c62f9603a2a409401103f9b

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 f8225abd330d2335cffce3b0d15195c3e04436bb950289b93d0bb7a9c2046a1e
MD5 8a07b3d15aa71e076b9475d223f419d9
BLAKE2b-256 a13810d61afcbbc0cc2cd09caf6834597d823217a9169b8e94a800f8838ccbfb

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 383a9ec4c4215c7153375f24c3e71e0f7194c299cb26c0cde05e540688669540
MD5 b227d05b12168aabec87e82ce2cdf3e7
BLAKE2b-256 0094defe4642631683cb2f91c635001348c56772792040da2cafb5322339846d

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cf744f1a91a834d115aa44af12839719220b6ff9e5468af80b0f9d7c601d5862
MD5 825778a482d43a09578c2f975ff68fa3
BLAKE2b-256 47f8586bb9fa6d10e95cd03a497b6312c25110adefa2dde06e758f0e8d1c9f9e

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 cda8418e8ef58fa81b1b64f5e12e181c6ba962cbf6c1b637de3d045411d54109
MD5 a92ccb39472c26d183025020252ee5c1
BLAKE2b-256 0c4cbe75c5f6fa654b6878874f71a701115355d79fc6a79f75c33b2f76f50d7a

See more details on using hashes here.

File details

Details for the file polyscope-1.3.0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: polyscope-1.3.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.7.0 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.9

File hashes

Hashes for polyscope-1.3.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fff771acb16cbddd0bf08598f70934b5d62dd966ca80481dd99bb0310bef1d28
MD5 f1c6c2339b2ad72305de4c84bab9c47a
BLAKE2b-256 967082652afa6086d3dbbb9bbed2335d388900d6c3309d676fee233b9f253d62

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