- How to Adjust X and Y Axis Scale in Arduino Serial Plotter (No Extra Software Needed)Posted 4 months ago
- Elettronici Entusiasti: Inspiring Makers at Maker Faire Rome 2024Posted 4 months ago
- makeITcircular 2024 content launched – Part of Maker Faire Rome 2024Posted 6 months ago
- Application For Maker Faire Rome 2024: Deadline June 20thPosted 7 months ago
- Building a 3D Digital Clock with ArduinoPosted 1 year ago
- Creating a controller for Minecraft with realistic body movements using ArduinoPosted 1 year ago
- Snowflake with ArduinoPosted 1 year ago
- Holographic Christmas TreePosted 1 year ago
- Segstick: Build Your Own Self-Balancing Vehicle in Just 2 Days with ArduinoPosted 1 year ago
- ZSWatch: An Open-Source Smartwatch Project Based on the Zephyr Operating SystemPosted 1 year ago
After the 3D File Viewer, GitHub introduces 3D File Diffs
Amazing news: Github is digging more and more into 3D designs:
Back in April, we introduced the 3D file viewer. Today we’re improving this by displaying diffs of STL files on GitHub.
There are two modes to figure out what you’re looking at. By default, we select “Highlight”, a mode that highlights the removed parts in red and the added parts in green, leaving what is unchanged as a wireframe.
Also available is the revision slider, which lets you transition between the current version of the file, and the previous one with a small slider at the top of the viewer.
How does this work? We take both versions of the model, and using binary space partitioning, we compute the added, removed, and unchanged parts. This is done using csgtool, a C library paired with a Ruby gem via FFI. These pieces are cached and displayed by the 3D viewer we already have, though we color them differently and play with their transparency to help illustrate the changes. If you have any further questions, check out the help article.
We see this as a step for making it easier for you to use GitHub for your open source hardware needs.