From 10090d9ad09be90218ff7c2e59b0ea1b39102900 Mon Sep 17 00:00:00 2001 From: Yeicor <4929005+Yeicor@users.noreply.github.com> Date: Sat, 27 Aug 2022 17:50:30 +0200 Subject: [PATCH] Add SDF Viewer to the README.md I made a real-time, cross-platform, language-agnostic SDF Viewer application, and integrated it with your SDF library among others. It works similarly to `sdf3ui` but has some extra features (AFAIK): - Different rendering algorithm that allows observing the model preview while it is being loaded. - Support for customizing parameters in real-time from the UI without modifying the code (it also listens for code changes and refreshes the view) - Support for textures and material properties (and even exporting them). - You can publish your SDF by uploading a file to a server and sharing the renderer link (renders the SDF in the browser without a backend). - More meshing algorithms (although speed is not a concern). Check out https://github.com/Yeicor/sdf-viewer and https://github.com/Yeicor/sdf-viewer-go for much more information. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9cdeb8c..8bc46f7 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ A rewrite of the original CAD package [`sdfx`](https://github.com/deadsy/sdfx) for generating 2D and 3D geometry using [Go](https://go.dev/). ## Highlights -* GUI with real-time rendering using [sdf3ui](https://github.com/soypat/sdf3ui). +* GUI with real-time rendering using [sdf3ui](https://github.com/soypat/sdf3ui) (or [SDF Viewer](https://github.com/Yeicor/sdf-viewer-go)). * 3d and 2d objects modelled with signed distance functions (SDFs). * Minimal and idiomatic API. * Render objects as triangles or save to STL, 3MF(experimental) file format. @@ -130,4 +130,4 @@ None planned. ## Logo work Gopher rendition by [Juliette Whittingslow](https://www.instagram.com/artewitty/). Gopher design authored by [Renée French](https://www.instagram.com/reneefrench) -is licensed by the Creative Commons Attribution 3.0 licensed. \ No newline at end of file +is licensed by the Creative Commons Attribution 3.0 licensed.