GLB sample file
glb_material_chip_sample.glb
928 B
model/gltf-binary
SHA256 verified
File details
Filename
glb_material_chip_sample.glbSize928 B (928 bytes)
MIME type
model/gltf-binaryExtension
.glbSHA256
78a7a6a737e186f187bfe7c8e0f7cb47a0f1020d76510aeeb1ec2b8d8677573eDownload commands
Use in scripts and tests
curl -L -o glb_material_chip_sample.glb \
https://samplefile.com/samples/download/three-d/glb/glb_material_chip_sample.glb/
wget -O glb_material_chip_sample.glb \
https://samplefile.com/samples/download/three-d/glb/glb_material_chip_sample.glb/
import requests
url = "https://samplefile.com/samples/download/three-d/glb/glb_material_chip_sample.glb/"
resp = requests.get(url)
with open("glb_material_chip_sample.glb", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/three-d/glb/glb_material_chip_sample.glb/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("glb_material_chip_sample.glb", buf);
# Download and verify SHA256
curl -L -o glb_material_chip_sample.glb https://samplefile.com/samples/download/three-d/glb/glb_material_chip_sample.glb/
echo "78a7a6a737e186f187bfe7c8e0f7cb47a0f1020d76510aeeb1ec2b8d8677573e glb_material_chip_sample.glb" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/three-d/glb/glb_material_chip_sample.glb/").content
assert hashlib.sha256(data).hexdigest() == "78a7a6a737e186f187bfe7c8e0f7cb47a0f1020d76510aeeb1ec2b8d8677573e"
More GLB files
Other GLB Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
glb_box_preview_sample.glb |
892 B | f7547dac8566a8b5… |
Download |
glb_scene_node_sample.glb |
920 B | 824f256d241d12bc… |
Download |