nowfound

Alternatives

Products that do what Three Slicer does

Slice 3D Models to Gcode in browsers. No install, no upload.

  1. 1

    Blender-style 3D editing in your browser

    May 2026 · 3d-editor.com

  2. 2CA

    I'm currently developing Chili3D, an open-source, browser-based 3D CAD application. By compiling OpenCascade to WebAssembly and integrating Three.js, Chili3D delivers near-native performance for powerful online modeling, editing, and rendering—all without local installation. Access it here: https://github.com/xiangechen/chili3d Features: Modeling Tools: Create basic shapes (boxes, cylinders, cones, etc.), 2D sketches (lines, arcs, circles, etc.), and perform advanced operations (boolean operations, extrusion, revolution, etc.). Snapping and Tracking: Precisely snap to…

    2025

  3. 3IB

    I've been working on an MMORPG that is now in alpha as a solo developer. Here are the major open source technologies that I use: Blender - 3D modeling software for creating the overall environment and every game object. I've gotten a lot of CC and Public Domain assets from https://poly.pizza GLTF - I export assets from blender to the GLTF asset format JSON - I write a JSON config for every game object that describes things like its name, its interactions, its collisions, etc. Node.js exporter - I iterate over the environment and every asset to create a scene hierarchy. I use…

    2024 · alpha.reconquer.online

  4. 4

    3D data prep made easy

    2024

  5. 53P

    Commodity FDM print strength is limited by poor Z-axis layer bonding. Parts crack along Z under stress. MAGMA tries to fix this in software that works on any FDM 3D printer. It's a fork of OrcaSlicer with a new infill type that creates paired U-shaped vertical channels inside the print, plus G-code that injects molten plastic into those channels to bridge Z layer interfaces with continuous plastic. Big caveat: I have a junky Ender 3 and haven't gotten a clean physical print yet. Don't expect this to work out of the box! After months of tinkering, I'm releasing the software so the 3DP…

    Jun 2026 · mgunlogson.github.io

  6. 6
    Threedio291

    Perfect 3D models for your videos, consistent & optimized

    2023

  7. 7

    A simple yet powerful 3D viewer for Google Drive and Gmail

    Jan 2026

  8. 8IM
  9. 9

    Turn any 3D model into a buildable brick design

    Jul 2026 · bricksolvr.com

  10. 10RT

    I ported Microsoft's TRELLIS.2 (4B parameter image-to-3D model) to run on Apple Silicon via PyTorch MPS. The original requires CUDA with flash_attn, nvdiffrast, and custom sparse convolution kernels: none of which work on Mac. I replaced the CUDA-specific ops with pure-PyTorch alternatives: a gather-scatter sparse 3D convolution, SDPA attention for sparse transformers, and a Python-based mesh extraction replacing CUDA hashmap operations. Total changes are a few hundred lines across 9 files. Generates ~400K vertex meshes from single photos in about 3.5 minutes on M4 Pro (24GB). Not as fast as…

    Apr 2026 · github.com

  11. 11AS

    Hi HN, author here. SHARP is Apple's recent single-image 3D Gaussian splatting model (https://arxiv.org/abs/2512.10685). Their reference code is PyTorch + a pretty heavy pipeline; I wanted to see if it could run in a browser with no server hop, so I exported the predictor to ONNX and ran it via onnxruntime-web with the WebGPU EP. What works: drop in an image, get a .ply you can download or preview live, all on your machine — your image never leaves the tab. The model is large (~2.4 GB sidecar) so first load is slow on a cold cache, but inference itself is a few seconds on…

    May 2026 · github.com

  12. 12
    Ponzu89

    AI-powered textures for 3D models

    2022

  13. 13VC

    Hi HN, I’m the creator of SynapsCAD, an open-source desktop application I've been building that combines an OpenSCAD code editor, a real-time 3D viewport, and an AI assistant. You can write OpenSCAD code, compile it directly to a 3D mesh, and use an LLM (OpenAI, Claude, Gemini, ...) to modify the code through natural language. Demo video: https://www.youtube.com/watch?v=cN8a5UozS5Q A bit about the architecture: - It’s built entirely in Rust. - The UI and 3D viewport are powered by Bevy 0.15 and egui. - It uses a pure-Rust compilation pipeline (openscad-rs for parsing and csgrs…

    Feb 2026 · github.com

  14. 14GA

    Google released an API in May to get fetch 3D Tiles of anywhere on Earth. Using this in standard 3D engines like Blender is tricky because (1) the tiles are in a geographic coordinate system (2) you get a lot of little tiles at varying quality levels I wanted to simplify this so all you need to do is get an API key, select a map region and a zoom level, and get one combined glTF file that you can throw into any engine. Especially if you're just prototyping and want to see how this data looks in your engine before investing in figuring out all the nuances of the API & coordinate system. (Note…

    2023 · github.com

  15. 151F
  16. 16
    Amodeling104

    Turn text, 2D, or 3D images into 3D models and 3D prints

    2025

  17. 17SS

    3D printers need slicer software to turn 3D models into print commands. Slicers have lots of configuration parameters, any of which could screw up a print. A couple months back I was looking for slicer settings to get my new k8200 printer working with anything other than PLA. A kind Redditor shared her settings on a private Github with me, but only after a couple weeks of forum hunting and Googling. That got me thinking - there has to be a better, faster way to do this.. I put together www.slicershare.com to make sharing slicer setting files dead easy. You can browse for slicer settings by…

    2015

  18. 18GA

    Hello internet folks! I'm happy to share the first TestFlight release of Glyph3D, a 3D text visualizer for macOS and iOS. It's free, supports pretty much any utf8 data, and is a pretty interesting way to navigate your repositories or data directories without the limitations of standard text windows! Download and bookmark for macOS and iOS: https://github.com/tikimcfee/LookAtThat/ - You should be able to download public repos from GitHub and render them. - Play with opening and closing windows. I've disabled many of the in-flight features to keep user confusion down,…

    2024 · github.com

  19. 19

    Split STL & 3MF files to fit any 3D printer

    Aug 2026 · partfit3d.com

  20. 20
    GCodex2

    Free online G-Code viewer & simulator for CNC and 3D printer

    May 2026 · gcodex.tech

  21. 21GW
  22. 22CA

    Hey HN, I'm a beginner at CAD so I built an app that does it for me ;) Describe a part and ChatToSTL writes the OpenSCAD code, shows a live render with size sliders, then exports the STL/3MF file. Because the output is parametric, it's easy to modify (unlike mesh models like Shap-E or DreamFusion). Try it (needs your own OpenAI key): https://huggingface.co/spaces/flowfulai/ChatToSTL How it works: Text prompt → o4-mini generates OpenSCAD code → live render + sliders → refine in chat → export. Examples & Code: * Walkthrough + real prints (bowl, hook, box, door…

    2025 · huggingface.co

  23. 23

    Convert 3D files privately in your browser

    13d ago · 3dconverter.org

  24. 24

    Turn CAD models into interactive online 3D presentations.

    Mar 2026

Ranked by how close each launch is in meaning, then by votes. Refine with a description →