dalboris / vpaint

Experimental vector graphics and 2D animation editor
http://www.vpaint.org
Apache License 2.0
732 stars 54 forks source link

VPaint is an experimental prototype based on the Vector Graphics Complex (VGC), a technology developed by a collaboration of researchers at Inria and the University of British Columbia. It allows you to create resolution-independent illustrations and animations using innovative techniques.

VPaint is licensed under the Apache 2.0 License.

More Info:

Disclaimer

VPaint is considered BETA, and always will: it lacks plenty of useful features commonly found in other editors, and you should expect glitches and crashes once in a while. It is distributed primarily for research purposes, and for curious artists interested in early testing of cutting-edge but unstable technology.

Future Releases

Because VPaint is just a prototype, we may or may not release new versions. However, we are currently developing two new apps, called VGC Illustration and VGC Animation, based on what we learned from VPaint. These new apps will significantly improve performance compared to VPaint, and have more features.

If you would like to be notified if/when a new version of VPaint is released, or when VGC Illustration and VGC Animation are released, you can subscribe to the newsletter at vgc.io. Thanks for your interest, and have fun testing VPaint!

Build Instructions

Prerequisites:

Supported platforms (see Qt 5.15 Supported Platforms for details):

Using qmake (application only)

Windows 7+, Visual Studio 2019 64bit, Qt 5.15.2

git clone https://github.com/dalboris/vpaint.git
mkdir build && cd build
"C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\Common7\Tools\VsDevCmd.bat" -arch=amd64
C:\Qt\5.15.2\msvc2019_64\bin\qmake.exe ..\vpaint\src
nmake
set PATH=%PATH%;C:\Qt\5.15.2\msvc2019_64\bin
Gui\release\VPaint.exe

macOS 10.13+, Xcode/Clang, Qt 5.15.2

git clone https://github.com/dalboris/vpaint.git
mkdir build && cd build
~/Qt/5.15.2/clang_64/bin/qmake ../vpaint/src
make
./Gui/VPaint.app/Contents/MacOS/VPaint

Ubuntu 18.04+, GCC, Qt 5.15.2

sudo apt-get install build-essential libglu1-mesa-dev
git clone https://github.com/dalboris/vpaint.git
mkdir build && cd build
~/Qt/5.15.2/gcc_64/bin/qmake ../vpaint/src
make
./Gui/VPaint

Using CMake (application and library)

git clone https://github.com/dalboris/vpaint.git
cd vpaint
mkdir build && cd build
cmake ..
cmake --build . --config Release
./src/Gui/Release/VPaint