https://github.com/fogleman/meshview
Performant 3D mesh viewer written in Go.
https://github.com/fogleman/meshview
3d 3d-graphics go
Last synced: about 1 month 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 (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-06T18:12:37.000Z (2 months ago)
- Last Synced: 2025-03-29T17:09:20.699Z (about 1 month ago)
- Topics: 3d, 3d-graphics, go
- Language: Go
- Homepage:
- Size: 32.2 KB
- Stars: 136
- Watchers: 6
- 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
```