Skip to main content

Python bindings for xatlas

Project description

Python bindings for xatlas

(Unofficial) Python bindings for xatlas, a library that generates texture coordinates for triangle meshes.

Installation

From source

git clone --recursive https://github.com/mworchel/xatlas-python.git
pip install ./xatlas-python

Using Pip

pip install xatlas

Usage

Parametrize a mesh and export it

import trimesh
import xatlas

# We use trimesh (https://github.com/mikedh/trimesh) to load a mesh but you can use any library.
mesh = trimesh.load_mesh("input.obj")

# The parametrization potentially duplicates vertices.
# `vmapping` contains the original vertex index for each new vertex (shape N, type uint32).
# `indices` contains the vertex indices of the new triangles (shape Fx3, type uint32)
# `uvs` contains texture coordinates of the new vertices (shape Nx2, type float32)
vmapping, indices, uvs = xatlas.parametrize(mesh.vertices, mesh.faces)

# Trimesh needs a material to export uv coordinates and always creates a *.mtl file.
# Alternatively, we can use the `export` helper function to export the mesh as obj.
xatlas.export("output.obj", mesh.vertices[vmapping], indices, uvs)

# Both `xatlas.parametrize` and `xatlas.export` also accept vertex normals

Parametrize multiple meshes using one atlas

mesh1 = trimesh.load_mesh("input1.obj")
mesh2 = trimesh.load_mesh("input2.obj")

atlas = xatlas.Atlas()

atlas.add_mesh(mesh1.vertices, mesh1.faces)
atlas.add_mesh(mesh2.vertices, mesh2.faces)

# Optionally parametrize the generation with
# `xatlas.ChartOptions` and `xatlas.PackOptions`.
atlas.generate()

vmapping1, indices1, uvs1 = atlas[0]
vmapping2, indices2, uvs2 = atlas[1]

Repack multiple parametrized meshes into one atlas

vertices1, indices1, uvs1 = load_mesh_with_uvs("input1.obj")
vertices2, indices2, uvs2 = load_mesh_with_uvs("input2.obj")

atlas = xatlas.Atlas()

atlas.add_uv_mesh(uvs1, indices1)
atlas.add_uv_mesh(uvs2, indices2)

atlas.generate()

vmapping1, indices1, uvs1 = atlas[0]
vmapping2, indices2, uvs2 = atlas[1]

Query the atlas

atlas.mesh_count  # Number of meshes
len(atlas)        # Convenience binding for `atlas.mesh_count`
atlas.get_mesh(i) # Data for the i-th mesh
atlas[i]          # Convenience binding for `atlas.get_mesh`

atlas.width       # Width of the atlas 
atlas.height      # Height of the atlas

atlas.utilization        # Utilization of the first atlas
atlas.get_utilization(i) # Utilization of i-th atlas

# The image requires passing custom PackOptions:
#   pack_options = xatlas.PackOptions()
#   pack_options.create_image = True
#   atlas.generate(pack_options=pack_options)
atlas.chart_image        # Debug image of the first atlas
atlas.get_chart_image(i) # Debug image of the i-th atlas

...               # See xatlas documentation for all properties

License

The xatlas Python bindings are provided under a MIT license. By using, distributing, or contributing to this project, you agree to the terms and conditions of this license.

References

Test model taken from the ABC dataset

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

xatlas-0.0.7.tar.gz (289.2 kB view details)

Uploaded Source

Built Distributions

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

xatlas-0.0.7-pp39-pypy39_pp73-win_amd64.whl (190.0 kB view details)

Uploaded PyPyWindows x86-64

xatlas-0.0.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xatlas-0.0.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (235.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

xatlas-0.0.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (205.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xatlas-0.0.7-pp38-pypy38_pp73-win_amd64.whl (189.9 kB view details)

Uploaded PyPyWindows x86-64

xatlas-0.0.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xatlas-0.0.7-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (235.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

xatlas-0.0.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (205.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xatlas-0.0.7-pp37-pypy37_pp73-win_amd64.whl (189.9 kB view details)

Uploaded PyPyWindows x86-64

xatlas-0.0.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

xatlas-0.0.7-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (235.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

xatlas-0.0.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (205.2 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

xatlas-0.0.7-cp311-cp311-win_amd64.whl (190.8 kB view details)

Uploaded CPython 3.11Windows x86-64

xatlas-0.0.7-cp311-cp311-win32.whl (166.2 kB view details)

Uploaded CPython 3.11Windows x86

xatlas-0.0.7-cp311-cp311-musllinux_1_1_x86_64.whl (745.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

xatlas-0.0.7-cp311-cp311-musllinux_1_1_i686.whl (806.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

xatlas-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xatlas-0.0.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (235.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

xatlas-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl (205.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

xatlas-0.0.7-cp310-cp310-win_amd64.whl (190.8 kB view details)

Uploaded CPython 3.10Windows x86-64

xatlas-0.0.7-cp310-cp310-win32.whl (166.1 kB view details)

Uploaded CPython 3.10Windows x86

xatlas-0.0.7-cp310-cp310-musllinux_1_1_x86_64.whl (745.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

xatlas-0.0.7-cp310-cp310-musllinux_1_1_i686.whl (806.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

xatlas-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xatlas-0.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (235.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

xatlas-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl (205.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

xatlas-0.0.7-cp39-cp39-win_amd64.whl (190.9 kB view details)

Uploaded CPython 3.9Windows x86-64

xatlas-0.0.7-cp39-cp39-win32.whl (166.2 kB view details)

Uploaded CPython 3.9Windows x86

xatlas-0.0.7-cp39-cp39-musllinux_1_1_x86_64.whl (745.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

xatlas-0.0.7-cp39-cp39-musllinux_1_1_i686.whl (806.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

xatlas-0.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

xatlas-0.0.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (235.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

xatlas-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl (205.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

xatlas-0.0.7-cp38-cp38-win_amd64.whl (190.8 kB view details)

Uploaded CPython 3.8Windows x86-64

xatlas-0.0.7-cp38-cp38-win32.whl (166.2 kB view details)

Uploaded CPython 3.8Windows x86

xatlas-0.0.7-cp38-cp38-musllinux_1_1_x86_64.whl (745.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

xatlas-0.0.7-cp38-cp38-musllinux_1_1_i686.whl (805.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

xatlas-0.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (229.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

xatlas-0.0.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (234.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

xatlas-0.0.7-cp38-cp38-macosx_10_9_x86_64.whl (205.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

xatlas-0.0.7-cp37-cp37m-win_amd64.whl (190.9 kB view details)

Uploaded CPython 3.7mWindows x86-64

xatlas-0.0.7-cp37-cp37m-win32.whl (167.5 kB view details)

Uploaded CPython 3.7mWindows x86

xatlas-0.0.7-cp37-cp37m-musllinux_1_1_x86_64.whl (748.5 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

xatlas-0.0.7-cp37-cp37m-musllinux_1_1_i686.whl (808.2 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

xatlas-0.0.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

xatlas-0.0.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (240.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

xatlas-0.0.7-cp37-cp37m-macosx_10_9_x86_64.whl (203.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

xatlas-0.0.7-cp36-cp36m-win_amd64.whl (190.9 kB view details)

Uploaded CPython 3.6mWindows x86-64

xatlas-0.0.7-cp36-cp36m-win32.whl (167.5 kB view details)

Uploaded CPython 3.6mWindows x86

xatlas-0.0.7-cp36-cp36m-musllinux_1_1_x86_64.whl (748.5 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

xatlas-0.0.7-cp36-cp36m-musllinux_1_1_i686.whl (808.1 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

xatlas-0.0.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231.7 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

xatlas-0.0.7-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (240.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

xatlas-0.0.7-cp36-cp36m-macosx_10_9_x86_64.whl (203.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file xatlas-0.0.7.tar.gz.

File metadata

  • Download URL: xatlas-0.0.7.tar.gz
  • Upload date:
  • Size: 289.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7.tar.gz
Algorithm Hash digest
SHA256 bec42219909ed5bc64f4b86e17c96493a9930f6801f1dc262880a04e47beb23a
MD5 bea5972218a1cc0932b318d286b2b475
BLAKE2b-256 eb731eeaa80a9a72c513fa8e4ac720095a6bf19c473e73036f6e9ef0ffefa634

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0281c141d9fc22708dbe86dea3f489e792f16971f80e38b262ecedf21c934ed7
MD5 cab4baf85dd799869693dce18a4f3636
BLAKE2b-256 e150f2cd6fbb538cd9eb98813b75d58a6c1a28825ce544b3ec236e35c3798c08

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56d879eaa58760b0686e7001c58fe1ae1880c721bbe9954bcda6df56ca2cc202
MD5 9d0c7598307c5d2d07e7f9de5f89e11c
BLAKE2b-256 87be1e3f41ab3700f18e6bf465ced7fba36d338c0b171113cb99043510b9eaf0

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5c84734eeecb560f5456b106cf7cc81ff4df59d6a8ace75b8aa7dcd463353d6
MD5 8e9685254caf9b27a838d9fd39bc6b74
BLAKE2b-256 b1b209f15caaa9be6b2b849c8b2ecea99d9e986dffb0d8994c1712b621d0ca98

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15951ff3acd829eb13958138a7224ee58792f7c92e2d9ab4d635b630421f0319
MD5 83341463b79632d369c135889e0dadd7
BLAKE2b-256 09ebefd71e3ccd746daf91afa8761995f3647030047df0d3c7bee29a7d84ffce

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9835b101e9cea63dc6ff4667c253fe506aa18f1c9f9576144893b7569e7870e5
MD5 bfd9a7c45239569028cdc7ad0294ade1
BLAKE2b-256 612b5d2bd04b88f1600bb355c69c7d5d3c37c29ac5597b5e1f63627250bd4caa

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 246b9aa4a77ab1d9c3c32b00f4b81ffb76cfc56cc18912fdf6e6323b31a8d097
MD5 1ecb9a6da80e6f6e194c006651002a3b
BLAKE2b-256 ab13a588cb1385e86a1b10d51e6adee971f97ffe85f9b8075a2cd441b4413435

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e01c4b65495e6849946f5e6cc516f0e50317d7551f4c36de31f60822e57be0fc
MD5 eed4e59cd43990e05debf73c01b2d5ba
BLAKE2b-256 1a7e511f4db6b7cc629c9a64206777057217927720d251688f1584e4ca9b4f6c

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 18f03894cd757291e4e3719d69dccd98f8d17adaff1bc349b4fcf0c00e35cfd6
MD5 25c08e98f00a5384334423ea117b9777
BLAKE2b-256 078f527f822b9c3d21577c33c13ad64d5431fc6e780624ee4655a4687990e25e

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e7a9a6b9da6ffb1c83519410b187214b8465fce54ada4f7b0672c3789bf541a9
MD5 af15c5151ae55731f79df0c8f73b8b65
BLAKE2b-256 901fdf795c308045dead694c5708cb3964de18d405a6b7cbe831cedb3b178c87

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83a9288025bfa18d5f1eb6e587ab7364d0bdf93ed4b5525cd7b7ebc27333c659
MD5 1fe1f84b7668292e0265ac02176436ee
BLAKE2b-256 f699e9c4497f858ac5e52020ddd93ab505c9ac678661b0d5725fac6d3d61c469

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 52f50f938eed95684ec2c9f2f85a306e9eccac17671b0ab5b828f0a0e4fe4ba6
MD5 98fa48bb2ae74bbaa714d8d800ad6394
BLAKE2b-256 85336919a3ce9d3f530910c6bb121fccb20ff1541f4e2fd4e5f225bd9623b21d

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 300c59a1b82fe9b6472e5e963b437b460e989d96530b4a5146b94d44a8e43eff
MD5 50f7cd2d2cf45e102d31a97195891679
BLAKE2b-256 026c179594a96aa953b54931a949f4a394624bc8983773f030bc2e25476f4dc1

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 190.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b0eeab6c11f338e3112eb5ba9da417933a8a4f0463ca4c1f30534c1996a10489
MD5 9d3fa51058c640ec545de74175b10f25
BLAKE2b-256 cc02a4a03c3f37f04ef0044ff4e9bbcc22f870b019724bc3ed74b1237649e91b

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp311-cp311-win32.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp311-cp311-win32.whl
  • Upload date:
  • Size: 166.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a6c78a81d0bf6a6e9dd9b884ee05a53309efdef13278da9cb00e2355184250e4
MD5 eafb31505d233f2fa697120c733bf684
BLAKE2b-256 7ddb45cd03282109b235c3d7f30f1d4f50d56a923d76acbb70a4faccb0ba7f11

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e458da50f8d974b8697d1ae73a4ac03d1f718e1074767f2d0f43176a1ea9c556
MD5 aef4c6528a5b384227cb22db5bf9f2f0
BLAKE2b-256 ac5df9b5aae5edcaf404f6485d2514674c709371e00b6711cf86a42f79985ab4

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 783f3986b77f3e2fff07a68347f44ac4de0c6a512d16e59f138a011de6dbba90
MD5 eb4d96bd03bc31a8d11ac8687d6ab47e
BLAKE2b-256 a29814bfbb570d5c132530cc577a4d0ecaa54130883b3edf513aeb56700ea0b9

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0160afc73f4566972af430e11610a101af7f206c6b6a8d6d247e2869f63e5a9
MD5 3eefc1a0f2312115e51fa0cec8260ec2
BLAKE2b-256 b7c7fed9454ef267762a47810cd326891482c70b28904bd31f30c5be1715b8f7

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d4ddea13da0bd2e4fbc2c83f4e93cfa209c13f74827effc4e180a581b7210fb
MD5 4e7d0579db93e0e8334d2986cb19b8e3
BLAKE2b-256 c48d2d0aa2741891825d5e12c1825a1b9f093d7433c9af0d45181a704eddb9e2

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d167b7c039a19d06881d473029d925322a6ca2e237373a499157788d913a1a9b
MD5 4dd2a8f28756db8e249302d74d015a62
BLAKE2b-256 6cfc65db7257ab332393de7016fdd161d6bed33d090ca40a7d7f374eb3d43b83

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 190.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5488d79f2beae1f1c5649d34aff06a51aa7bb0ebb9e1bf9e01366f6ac718675d
MD5 ad8686246ed065601d87c3ef0f20f5f1
BLAKE2b-256 72263d688bcb84e931ea85d7ccd8e8a6f93c50ae2b1785b172372d0a6a9678d2

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp310-cp310-win32.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp310-cp310-win32.whl
  • Upload date:
  • Size: 166.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1bece806d6db39b8719418e8c467c83a687ff69f91a7ebde4fc8a1a3578eeb58
MD5 58f99407af294d161f561184bcec6dd3
BLAKE2b-256 5c6b97797192aeea2b64b4186ec0610a6ffee873b75a895a85d8058e92b9c40a

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e07b49dac2a73a93335d6374cb96376689ebeca3dfd25bcb4d5fcfeb9d3306e4
MD5 89d9134f360918a680e874021ee98be1
BLAKE2b-256 b508eff511d945c6f18d5b2e77d8f335304cd09a0483baac32a43fa4029bbe23

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 44d2f9f960cf8955b09a9dd8d6fcada97a005cbfbfcaf8755aa48b07d29cbf93
MD5 208b01fa4f98fe80ec9bfc2cbd6171fe
BLAKE2b-256 65b3f4a9a179ae12c8b862987c37e22a8eab7c28c03a07ae1a2bbae65eeed0d2

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69f5fdad0274f8e232b65642e65b6e3628c8738b40b091e78b980f8c5c3f7802
MD5 190716d2f0af819108386da4c9116890
BLAKE2b-256 c60aa6dc174bce92394acdb232b0a5e6963a1d5b61f0606679018ed1b3d43b0b

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 616bdcab161e5772e52ab7a60e5437ea9422f3d8689937de4e4c5ec6498d7e9c
MD5 27426c0bdb1a79c957f8c2ad27202411
BLAKE2b-256 a17339949ea24d49d485c5678887e92f968ab3a9484da41f260d3ed6a4b5b9e7

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2bb8de19cec690a0a2d8d79354fdd52a95607c41d2e20b3b1ef95c0336d3a786
MD5 33586fd4ad1f1817cb4c10577b0b4e41
BLAKE2b-256 6ce1db99dcf9b8bc5363edf875f7381ccb29d58ed0bf6b37a2bc1f0ae09378d7

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 190.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a1b216f4a95b4339592e9ade6da373808a96407b88b05455854ef6bfadf655b1
MD5 fb1914dd3fb5011d7a0603c596aa9130
BLAKE2b-256 84425ff8ce9abdc78ecb7006105b42c1c35ba3c5ef39f542fdc13467ed4c8160

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp39-cp39-win32.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp39-cp39-win32.whl
  • Upload date:
  • Size: 166.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f3b261630c5381ce656ec1a492fd780655bd0f214bc1ed0d987ad28672f22933
MD5 331c0e8e8760f704394985ef5ed8ca6a
BLAKE2b-256 7119dbdd2eaca0b846ab5cdba4a4fc9c692b577e139d906b6197680eb7466dbe

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4fd9d0d809c898758f1b0723087b1daf5640122183ab118c1886bcb9d2a1c0a4
MD5 778c320651ea9bee39dadeee73b96407
BLAKE2b-256 8e3526e231c1c9af0091faa58f8f32787666cc292335978bbd0899c8231ea2fd

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp39-cp39-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 806.5 kB
  • Tags: CPython 3.9, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f33cf3d93a266058fc1c61dd99dde143df07753051a2c44d23c61d54e96cf956
MD5 3fbfb50dc59a6f1af28b7ffd2b19fc6e
BLAKE2b-256 4b1e4ff641bc7c4455d13f4c1c1d9a4df08b6f998231702fd58e436a2b57f4c6

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75075f685fccf8fd0bb26e1a7489d01241c86da54d0d6a110c516fca0f53a59d
MD5 4ed97db8228c88784cb9f6aa1c589913
BLAKE2b-256 4d4ec735e483752e79d73697c358406c3b9a92b9991398d9b4fc415516fbf1bf

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3b5a978945f80a7b8af298f965849cbe4d28dde6ebafc0775b199ec577af9cc
MD5 7c7e8c6d93b9e1554015f1e49099a6a0
BLAKE2b-256 813801ace8e2eda9db1c273495de71050afa2c4c40e5e567d716ffc0963540ad

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 272ef8762302cbc8c114c636a2e54abf8282c81db290dddb99cd86b872e28359
MD5 c4ca372ae63dbccc70c1579ca9bcf57c
BLAKE2b-256 11fbb16a0a797ee6f73017e166cf0c56c49ed70ca97319f0abbc7da607867ef6

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 190.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2e9750cf9667aa99c75f9d5420300b6da345c31a17190c59d609578aecd33c76
MD5 5a76e1dd00a9c1359af48965d317bb3a
BLAKE2b-256 fb2fd5b66d1caf2d093f875887af98bcd3af2617e2741d6e65050bbc9d998d26

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp38-cp38-win32.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp38-cp38-win32.whl
  • Upload date:
  • Size: 166.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 53596b50e81da73b238e9fb433076fb30c1eb6fe104732ff96e7d6e1674173c7
MD5 018231f66c2cb6d273aa535365ca2611
BLAKE2b-256 afbe029310ae6021ea4d3cb5338485e40fc7cb3a28a356704cb99ae889c58579

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8e0575f838d8d6ef919464aaed5f999ada79304511e7c1f7291562a4aeee3609
MD5 f0a57a8fb0fc20c5e76fabc9c4a936c8
BLAKE2b-256 1919cdb1b05e7beb88290a9198f9da8cad87899a6aab41c813fc903ff28a9c4d

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp38-cp38-musllinux_1_1_i686.whl
  • Upload date:
  • Size: 805.9 kB
  • Tags: CPython 3.8, musllinux: musl 1.1+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 359908f6d7fb3fe68cc8e57384f5e1c744d92ec79f7bb0c9f4503dfb11e6beb2
MD5 9e531e3857f7381d924dde1833341144
BLAKE2b-256 47560d6ef737b3200431b3580442b42587b6af4cd83b3d7b3a69979d801870f7

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bba82d2ed7b6b363b25de7bd43c60ce110c2086922b3c915a62f23a721113ff2
MD5 1001ac3e44ad6286c1101400a2fe2b01
BLAKE2b-256 5ccbd0146581317353b2eb007cef09cf46e1021bb4c551a44bcf8b0aacedeb48

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8c19c56601e6f0f8e52180699032446f03d458defb09a8a5c9601d0125e0ed10
MD5 b93927ef5814c4fa0f623234dfe24841
BLAKE2b-256 fc19ec13bef7a8065bc1c045cbbcc49eaac959317231f258e8a0a8167fc5818e

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0685471c3a4f653973baefd26638fab60bf8f4d3772d261e4ef6abbda29b540
MD5 f1f3d74e39d68928c5f8c2a4ba690222
BLAKE2b-256 4f43ffc172201d7e493b091829c6aaf4310903e1c96bf4037ee1f3410cee8e5d

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 190.9 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 c46a3f81c544a393dfecc76c9ad97db1f74a50355542bb3b4beeb6c21f7355b0
MD5 9d463bdfda9c21a30100c48b7d26d2d2
BLAKE2b-256 d42b40be7b0e6bfcd6fedf0760a057a1c62ad3255c5c28b1729c9a5342f02aa1

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp37-cp37m-win32.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 167.5 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2cb8238ec68d32ee9f4d256bd23ede0b6366840e88a8f93a828a7ec5c1e33cbe
MD5 5187d38793a163b3668551d6582a4a51
BLAKE2b-256 f8933dc9d35cd9bb46def3488aec5de3edd70a9a4eb5e05938124514b052deb5

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d0202c4a1af95edd290b18c44f014d2831572ab242acdb9e946949bd1210f61a
MD5 04994d1848276d2f3dcfb31d88e4b6e4
BLAKE2b-256 11d5331a4fc7bc714b522bc4628334d880fee6cd9cb9c79022c136f4091907f0

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e1838a46070c9fbd1240bdc619bf5fddf664a8e1596f84b3efa196dc2b427aee
MD5 329617247fbfef7fde957f7b8e18ddb8
BLAKE2b-256 21c51ea02635ea0cd8f22aaac5bea7a9531bb3f019c2d175e3d2c21d702cba90

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 634649fdf4c30ed36452324a0323eeb52cc484027faa96858150f8a49e2daf95
MD5 3cfa4c9b5670a995d0e9f93fa96e024c
BLAKE2b-256 afddcc44dd73aaf8f09e85d74507f5801cf8caeac67ef59c836ae9c9b490bb52

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4fb9b22793773147194f2e0d067ce1467aff65798f3a274a213ac448ce48ab66
MD5 002697af39a2d0d1aafe233d5e5a9ee3
BLAKE2b-256 ff48401372a29a93899614463976df399c99743934909f1b9323e471ae8ce999

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ae35967f2e292497987c0af7ab828042875bbd81ad019f2f4131315f56bcc6f5
MD5 1d9a4e1a5b12d9a37e63217bc20540eb
BLAKE2b-256 84eab29705bd51dacbc838193308363682e043eed660d8105f43480b78de15e0

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 190.9 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 814fea7896aa63cbc6ab2c0fead44f2db4cc0a0b6eb7a15487a95131b5cded78
MD5 fab80d5d6c4590cacc4ea1f3d3499286
BLAKE2b-256 beb1be275c06475e6cee72721536150912cd81889f55f8b6e80257bbdd60a77b

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp36-cp36m-win32.whl.

File metadata

  • Download URL: xatlas-0.0.7-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 167.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for xatlas-0.0.7-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6ebdb83db3a38f17d007928378ca24028f2e86e45d5738376f4a0fcc22a9f338
MD5 20022e7f2a751cec55a7737a59da3e9e
BLAKE2b-256 4a70bb7a7e644128100fcfc5034f27dc48a934f8c7a6f0ff22498661c7d8e559

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 35958a6e8d33edae503d93124b490b18f5401d3f0727b4b269085de32c6e061a
MD5 33d1de4815345294756956629c05243c
BLAKE2b-256 59ceda75ff3df24720ca8cb627821991223b149fb4a84493baef9ffac9af4dd9

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d0051139de263c972fd9b61c55b84156039b421811ff165699bd10b699b38dae
MD5 7d89a526e6505576b58d1e3c2be4f302
BLAKE2b-256 12206b0c437aea4c346335b5c55ea5455866026d4349648fd23ac4f2beebdfae

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a47eda2d4e937b8b4f7fed4a082232f132ff072d3f10e55438796448b3c45074
MD5 45a36df8a3b290b1be2069c7298a13ec
BLAKE2b-256 e8126364b1e234ccbefccdd16448fd2f77dfb11189724c0c792a79b4196938c7

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7700b99c7d1fea7b1332ef9efbca2b832e2680a710a31f0a2d7123b9587c9c5c
MD5 e56a59d2fff40ffcc5b6c1e0e06bae92
BLAKE2b-256 a97e490d5af8fb33748f444cd00f690f897aa5bc3c04643d70e28b0c3fcdb196

See more details on using hashes here.

File details

Details for the file xatlas-0.0.7-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for xatlas-0.0.7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ba8a98500dd739b2d493ff5012340307fb6f011cff6e460fa08897bbbb2d503f
MD5 2d7e7bca50fde4307df4054d094da899
BLAKE2b-256 6387297cceb4cfab4ce1fde5e5f371363efea53b1f4e59f40a0794e685bc0f95

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