Vim-like paint application powered by GLUT(openGL Utility Toolkit, C-lang 3D CG API) for Mac or Linux.
Execute "git clone" command.
$ git clone https://github.com/szkny/GRAPPA.git
Or download zip file.
$ cd [Path to "GRAPPA-master.zip"]
$ unzip GRAPPA-master.zip
Change directory to "GRAPPA" or "GRAPPA-master", then
$ cd ./build
$ cmake ..
$ make
Go to directory where "GRAPPA" executable exists ("build" directory).
Then, execute GRAPPA with "GRAPPA.gra" as an argument.
$ ./GRAPPA ../tutorials/GRAPPA.gra
As another way, after starting GRAPPA, type ":" to start the console mode, and enter the following command,
:edit ../tutorials/GRAPPA.gra
The command "edit" can simply written as "e".
:e ../tutorials/GRAPPA.gra
The editting data can be saved by "w" command.
:w
You can quit by "q" command.
:q
GRAPPA's command list can be confirmed by "help" command.
:help
The command list is described in "./src/Command.cpp".