You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
make sure the Allocator's are actually used for memory allocation
add path intersections
add path splitting
add boolean operations
gradients
different blend modes
shadows
A lot more unit tests (specifically for numeric stability).