Home

Awesome

Paper Build Status

Overview

Paper is a C++ port of paper.js.

Supported Platforms

OS X and Linux at this point.

Dependencies

Installation

###RECOMMENDED

Since we are still in pre alpha, the brew tap does not get updated that often, while the master repository will be. You will most likely get the best experience/stability and features out of simply cloning the current master branch at this point. If you manually installed the dependencies you can simply build and install Paper by doing:

mkdir build  
cd build  
cmake ..  
make install

If you want to install the dependencies through the git submodules, do this:

git submodule init  
git submodule update  
mkdir build  
cd build  
cmake -DBuildSubmodules=On ..  
make install

###OS X

The easiest way to install Paper on OS X is to use Homebrew. If you installed Homebrew, hook into this custom tap via: brew tap mokafolio/mokatap Then run the following to install Paper and all its dependencies. brew install paper

Examples

Paper examples are located here. A lot more coming soonish.

License

MIT License

Differences to paper.js

Coming soon.

TODO