mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-03-14 08:49:50 -04:00
30 lines
782 B
JavaScript
30 lines
782 B
JavaScript
|
/*
|
||
|
* Paper.js
|
||
|
*
|
||
|
* This file is part of Paper.js, a JavaScript Vector Graphics Library,
|
||
|
* based on Scriptographer.org and designed to be largely API compatible.
|
||
|
* http://paperjs.org/
|
||
|
* http://scriptographer.org/
|
||
|
*
|
||
|
* Copyright (c) 2011, Juerg Lehni & Jonathan Puckey
|
||
|
* http://lehni.org/ & http://jonathanpuckey.com/
|
||
|
*
|
||
|
* Distributed under the MIT license. See LICENSE file for details.
|
||
|
*
|
||
|
* All rights reserved.
|
||
|
*/
|
||
|
|
||
|
// This file is only used by examples and unit tests, using prepro.js to
|
||
|
// 'preprocess' it on the fly in the browser, avoiding the step of having to
|
||
|
// manually preprocess it after each change.
|
||
|
|
||
|
// Define options for compile-time preprocessing.
|
||
|
var options = {
|
||
|
browser: true,
|
||
|
stats: true,
|
||
|
tests: this.tests,
|
||
|
version: 'dev'
|
||
|
};
|
||
|
|
||
|
include('../paper.js');
|