Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fogleman/meshview
Performant 3D mesh viewer written in Go.
https://github.com/fogleman/meshview
3d 3d-graphics go
Last synced: 4 days ago
JSON representation
Performant 3D mesh viewer written in Go.
- Host: GitHub
- URL: https://github.com/fogleman/meshview
- Owner: fogleman
- License: mit
- Created: 2017-07-05T19:53:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-12-13T16:43:16.000Z (about 2 months ago)
- Last Synced: 2025-01-20T00:12:29.114Z (11 days ago)
- Topics: 3d, 3d-graphics, go
- Language: Go
- Homepage:
- Size: 21.5 KB
- Stars: 136
- Watchers: 7
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# meshview
Performant 3D mesh viewer written in Go.
### Prerequisites
First, [install Go](https://golang.org/dl/), set your `GOPATH`, and make sure `$GOPATH/bin` is on your `PATH`.
```bash
brew install go # if using homebrew# put these in .bash_profile or .zshrc
export GOPATH="$HOME/go"
export PATH="$PATH:$GOPATH/bin"
```You may need to [install prerequisites](https://github.com/go-gl/glfw#installation) for the `glfw` library.
### Installation
```
go get -u github.com/fogleman/meshview/cmd/meshview
```### Usage
```bash
meshview model.stl
```![Screenshot](http://i.imgur.com/6RKNQuf.png)