diff options
author | xengineering <me@xengineering.eu> | 2022-03-17 09:54:26 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-03-17 09:54:26 +0100 |
commit | aa690e36c698ff18209bdbe75e03d05779b51272 (patch) | |
tree | 8d8ab4f9494b6e0dd44dfe29e8ae6ccd81fc04db | |
parent | 1ab78fcdcfafc1b650bf8db6f4edd124e4435c79 (diff) | |
download | stlscope-aa690e36c698ff18209bdbe75e03d05779b51272.tar stlscope-aa690e36c698ff18209bdbe75e03d05779b51272.tar.zst stlscope-aa690e36c698ff18209bdbe75e03d05779b51272.zip |
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | app.go | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -31,13 +31,13 @@ Done (most recent first): - [x] implement minimal viable product To do (most important first): +- [ ] add support for ASCII STL format - [ ] allow window resizing - [ ] implement controls to modify view -- [ ] add support for ASCII STL format - [ ] improve performance with GPU-based matrix-matrix-multiplication - [ ] create icon for stlscope -- [ ] release version 1.0.0 - [ ] add desktop support +- [ ] release version 1.0.0 ## Further Ressources @@ -70,6 +70,6 @@ func (application *App) handle() { } // terminate closes the App. -func (application App) terminate() { +func (application *App) terminate() { glfw.Terminate() } |