Skip to main content

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

Project description

Polyscope's documentation is hosted at polyscope.run

Polyscope

Build Status

Polyscope is a C++ viewer and user interface for 3D data like meshes and point clouds. Scientists, engineers, artists, and hackers can use Polyscope to prototype and debug algorithms---it is designed to easily 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 the display of various data, colormapping data and editing maps, providing "picking" support to click in the scene and display numerical quantities, and generating histograms of scalar values.

A simple workflow for visualizing data in Polyscope looks like:

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

// Initialize polyscope
polyscope::init();

// Register a surface mesh structure
polyscope::registerSurfaceMesh("my mesh", mesh.vertices, mesh.faces);

// Add a scalar and a vector function to the mesh
polyscope::getSurfaceMesh("my mesh")->addVertexScalarQuantity("my_scalar", scalarQuantity);
polyscope::getSurfaceMesh("my mesh")->addFaceVectorQuantity("my_vector", vectorQuantity);

// Show the gui
polyscope::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. Thanks to some template magic, Polyscope can probably directly read from 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 the Polyscope contributors},
  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-0.1.0.tar.gz (5.9 MB view details)

Uploaded Source

Built Distributions

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

polyscope-0.1.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

polyscope-0.1.0-pp36-pypy36_pp73-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.14+ x86-64

polyscope-0.1.0-pp27-pypy_73-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.12+ x86-64

polyscope-0.1.0-pp27-pypy_73-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.14+ x86-64

polyscope-0.1.0-cp38-cp38-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8Windows x86-64

polyscope-0.1.0-cp38-cp38-win32.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86

polyscope-0.1.0-cp38-cp38-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

polyscope-0.1.0-cp38-cp38-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

polyscope-0.1.0-cp38-cp38-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8macOS 10.14+ x86-64

polyscope-0.1.0-cp37-cp37m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.7mWindows x86-64

polyscope-0.1.0-cp37-cp37m-win32.whl (1.6 MB view details)

Uploaded CPython 3.7mWindows x86

polyscope-0.1.0-cp37-cp37m-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

polyscope-0.1.0-cp37-cp37m-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

polyscope-0.1.0-cp37-cp37m-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7mmacOS 10.14+ x86-64

polyscope-0.1.0-cp36-cp36m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.6mWindows x86-64

polyscope-0.1.0-cp36-cp36m-win32.whl (1.6 MB view details)

Uploaded CPython 3.6mWindows x86

polyscope-0.1.0-cp36-cp36m-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

polyscope-0.1.0-cp36-cp36m-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

polyscope-0.1.0-cp36-cp36m-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.6mmacOS 10.14+ x86-64

polyscope-0.1.0-cp35-cp35m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.5mWindows x86-64

polyscope-0.1.0-cp35-cp35m-win32.whl (1.6 MB view details)

Uploaded CPython 3.5mWindows x86

polyscope-0.1.0-cp35-cp35m-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

polyscope-0.1.0-cp35-cp35m-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

polyscope-0.1.0-cp35-cp35m-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

polyscope-0.1.0-cp27-cp27mu-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

polyscope-0.1.0-cp27-cp27mu-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

polyscope-0.1.0-cp27-cp27m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 2.7mWindows x86-64

polyscope-0.1.0-cp27-cp27m-win32.whl (1.6 MB view details)

Uploaded CPython 2.7mWindows x86

polyscope-0.1.0-cp27-cp27m-manylinux2010_x86_64.whl (2.0 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

polyscope-0.1.0-cp27-cp27m-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

polyscope-0.1.0-cp27-cp27m-macosx_10_14_x86_64.whl (1.9 MB view details)

Uploaded CPython 2.7mmacOS 10.14+ x86-64

File details

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

File metadata

  • Download URL: polyscope-0.1.0.tar.gz
  • Upload date:
  • Size: 5.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0.tar.gz
Algorithm Hash digest
SHA256 f8910f2bbfed2d09ea70401714bf0aa7641159260187ee68caef58481d015f65
MD5 f4d27359e507252660fd309bda896817
BLAKE2b-256 55c8c8ad16fb7f5d4a6b05b4acfd6afe005d8ee1a4fd36a90a4a042e6915348b

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: polyscope-0.1.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-pp36-pypy36_pp73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 cacef623de0e434531b7c93d0579274254a839324c642fcb02773635f4277d87
MD5 03568221dcaf6055e3a64817f7888775
BLAKE2b-256 73cc952aa08fbb71e83e97f9f67ea9bba5498e9e4cbab46021c72601cc75f99a

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-pp36-pypy36_pp73-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: polyscope-0.1.0-pp36-pypy36_pp73-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: PyPy, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-pp36-pypy36_pp73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 689984c4c22c0131115ddd1d6e2986789e936607b84c959ba08486640658d8f4
MD5 9447c96b7ef6afbc9e31a35990558e39
BLAKE2b-256 fe041282a8194fc52859927267be932ea3c045260329492fcc28fa31214b4c75

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-pp27-pypy_73-manylinux2010_x86_64.whl.

File metadata

  • Download URL: polyscope-0.1.0-pp27-pypy_73-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-pp27-pypy_73-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 3f560babb6cb3cd15b8715b7e8c0120c77d728e253dc1009bbd23604f5eba03a
MD5 99436153cdf75a80a211dc8785fd2529
BLAKE2b-256 2b82bbecd437387054fdb1661975690efe08c0bc121edf81da27c9b937133707

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-pp27-pypy_73-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: polyscope-0.1.0-pp27-pypy_73-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: PyPy, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-pp27-pypy_73-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f05f7fd4165f4e223eed6bce7700ac85a5d40edd9f80c0f7a73b6ffc15ebd576
MD5 43611b266fd47f4de4dc7479e48a81bf
BLAKE2b-256 20245da677d29f15afc52a0a74fc893e39c63948927dfad0c5b22a13fe8a9273

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2bf2d1b34f12e2c801f027d3361f9e05455271c03147074dd4295bd2d77b0a7a
MD5 9c29c5afc6030a7081a77d2e85eb79c9
BLAKE2b-256 a7acc30f9f5c7bfbb240f9660974aee054aa99fde76816d6462885cb227d33e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 6696b39d3645ffea9567a6cee13f8c08914f5e76cdac6699d47a5341744167c8
MD5 6d83d2634b7794fbd11c222f9be291c4
BLAKE2b-256 59281be07f343072430bfe2a988e8b076e49ceff6014e3b17688af906d24197e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b9a245c9dcf4177b87a15499fdfef4df982d6799b70aa59a10c2f04181b5f66b
MD5 6d04bfc8efe321e013812670d6b58984
BLAKE2b-256 21b32f61a387006174306f562a4b01a165e99a271316105ae0267bc8753676d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2c8934406682bab167d88cef2d7b6c5a842270b58dffa7208fb3927d3afe152a
MD5 3a36234a2209ef8cc38751158b6575df
BLAKE2b-256 91a5f78d9dfa8992ae5080405e692089cc46804321f8ff96d2db1498ab07ea2a

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-cp38-cp38-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: polyscope-0.1.0-cp38-cp38-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp38-cp38-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 23bda23e415c6d185c3ffde5cb8a0b1058b5ca3357aaf2749ab7cba8ceca8568
MD5 579c3961d366329f70b8b8dc632298fc
BLAKE2b-256 f8316868f4838bf19626e21fffce70c030d2497c8732b817a799de418557ad41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1ff9a2ade47fba35dbeb42c7c0f68a2653956f5083af739f85763d9e0ffc4774
MD5 9ff65c56c518979a4a9e201ac08fc878
BLAKE2b-256 dab5b88d48217c21f9f7e5ebcaeacc28112c5e2af357cd50ebac550ed3aad1ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 50a4009df80e1bc7b4b609b55bf94e219e3462cc51ba83467f641b0e638bf43c
MD5 2f07e56eb2e4cf5d1f59c80a3534334e
BLAKE2b-256 43b0fa4a70cb45b4edbdc89034ddcd3c085f07189690f0631a218ae7bc169cda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c54e45c070d6b6400380488858429610b423ceb33ebe22dd3069c8b681267e8f
MD5 493f1aa927bea8f702198c81efc0db23
BLAKE2b-256 2bef062c47179df72ef1523b5ede85d7039686b5b4e7b40ba2177c61adfded64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a432b06b66c97804ba9410a85f65027223e5d11db9f571dcb862578ce91c6dcb
MD5 7ea6d9376277998590474b2bd2c0267d
BLAKE2b-256 2406776fb5b4afb5b8ea505282dffc624de8463d18edc7ef6aea1b4f727b3048

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-cp37-cp37m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: polyscope-0.1.0-cp37-cp37m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp37-cp37m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0bc1bb17dc66bd3b30f3a7019cc165c284ba11aebc98e71d9bda72498ccf60a1
MD5 cf3be6d6dd28994852e9cf9163ac1222
BLAKE2b-256 ceabec040a7479984aa84181e201ffd726468e06f4b862fdfcb5c1b8e3f0bef5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 597f5d38e4249c97a2d88302a6a999ef63dad5435c3a2cf7a0248f7b60c60bef
MD5 4a26fac744eef9579dd99b9388658eb2
BLAKE2b-256 2f0d7a9529512d3ce5ebb5da76741cc2d76807183101d2cf715ba1116b729e70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 148edeb7ad6f82030f0c83073a8d5677f720d066761e3c989191fe33fc6e7c7e
MD5 e9a69849baeac0b185eb4b3ee7f31627
BLAKE2b-256 dd68a9b8888e928169bf6619e4e553089dab2092eb756c035aa2958dbeb9bf2f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 22cd32e17653ea81324a0a5427634a4fa826e3f274952e1534cf5dc03efd1d6a
MD5 0aa6ccffc606a9b9a17e339bcd0dca93
BLAKE2b-256 0214abe187d35c65469c3dd9e29e16e10e1484c9d31146d7f653f32bce1efe58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c0e6f008139658a2bd04b91e1b48c55402ae21c737ac98e4e3532dbcfe5c6833
MD5 5e1313a27c80adae1d876d797b9453e9
BLAKE2b-256 77c28c27f7011269f775396aa099edc2d2d085e88fc815bfe976384f17d62246

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-cp36-cp36m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: polyscope-0.1.0-cp36-cp36m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.6m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp36-cp36m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ba0c1f0176dc28311f27b4783e89c7f70baccb3abd1dc143efe13b29e5385d78
MD5 f566798cfeebacd54326e4498881af06
BLAKE2b-256 c30d9fafc57420eec82748ac115832e4498bcf0ebc8797f250a4d99652897653

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5e207f77de60c279e4d28cca4b80ceb8e9c367e6338a4df5dd6d76103905f4ca
MD5 73f6c3778e01df445d0211c7519c69bb
BLAKE2b-256 2edf2efee93df79fcb03b403865d02c9ce7855b5d2e47ea730ec49b36e800fe5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 4c2204f3987476f0b3a14a274959a0f43bd1eba4752dd2e3000dbd6219e5f0e4
MD5 b66a5960552afa80ffeabc9a1686ae8c
BLAKE2b-256 955a1f0566fe875c2b0a0983067f1a5626e937b0013862e5e9434d5298021292

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c00030ab8a1f6c25b0bd85f7685f5d86c780075ee7524cc7fc84443822fc1531
MD5 faa294a199564e1427688b28a39b1538
BLAKE2b-256 96fab59ddfcb9befed8dfc947a0b789097d91565aacc163a166c8c380f9ca039

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9fdbb37d8783a62aafbd0c7dac828d42d3cf3a4927b8bb88e66614ac84c2b725
MD5 e6a5b76de51446004426f55d40293d45
BLAKE2b-256 042f29149ad6d6352039c82e3165a2ac5ab82c9701792b48d77248baf9e5a54f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: polyscope-0.1.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a6f41070035217902d5d7e9a3f52e8636dab6a61c4dc4bbecb1a33c8bfa6436f
MD5 959fedf0f9f1a1a7724fdf0f1f9a1619
BLAKE2b-256 3b4cc9c06f017f61a0b51dc2edc7f129d8f6b636a5439b6489ac420afdad2823

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: polyscope-0.1.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 246cfe1789315fc15899edf26b7a56f384325128fd1ab48a9908f70b06424cb7
MD5 28998f489b68be62e0d3b027b3fac95b
BLAKE2b-256 d7c1d4cec77d89b35c9b82c455a6fbe4a2413140a33a6112a22088f7737014e8

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: polyscope-0.1.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 909d29b9f722ff99750d0518b1e2b7eb4cfa6694a66f65a65c04461869637bbe
MD5 ac24e4bd651bd632923d80cf5490fe55
BLAKE2b-256 80a522a99b13bbdabdd4d6f94bc0d16aedc8923601696a0ff0e2cf926cd0c339

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: polyscope-0.1.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 862e7c01f2e7fe1041627c460cc32c0e751863303f02a172552e08f699586dab
MD5 4b42071013d08e9bf39ce04577fb60bc
BLAKE2b-256 04348dfd982387b27427254c258ed75f62c5bcfdf5e06cea5f4bbad1c413eee0

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: polyscope-0.1.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 83e32de7789469bca91a131f0596cfd85b75ab4a28aeeb6e1235fb076953f5d0
MD5 e1b1c96078088160122ad0da93ca848c
BLAKE2b-256 8aa924b189cc1d976720467302aaf608d2416ed0229a90d17082f2b6d3b01d55

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: polyscope-0.1.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 630dbf7add3f40b0882335619428d270dfdae302bbd9187e8dde8fd50ea66c3a
MD5 ce0f93a01c7ef83164a88745d217d4fb
BLAKE2b-256 de38619faff7052042c17c09269e0bf4f5622732832676fafcf1f307583666c0

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: polyscope-0.1.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.7

File hashes

Hashes for polyscope-0.1.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 01963641beec58427f1ea61784bbff08a575349460df3730ed9ff5905f923e9b
MD5 29b25d3c04a817f0c73867c67771e0e2
BLAKE2b-256 743f1ce8ce25ad1c36e02f30ed0a35cfdcd6d2e6aca5445084cbeb36c60665a2

See more details on using hashes here.

File details

Details for the file polyscope-0.1.0-cp27-cp27m-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: polyscope-0.1.0-cp27-cp27m-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 2.7m, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.5

File hashes

Hashes for polyscope-0.1.0-cp27-cp27m-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 dc22196cf6d4faa1a121d41fe8861ef826c488752ebd9d6b9af3e87d740a2b46
MD5 4c3f303b10cec05a06799df35ec7786f
BLAKE2b-256 390b0e894ece9cc8373ac426df000716901403470010e5836c5af9425b98608f

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