2011-07-26 07:27:36 -04:00
|
|
|
/*
|
2013-01-28 21:03:27 -05:00
|
|
|
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
2011-07-26 07:27:36 -04:00
|
|
|
* http://paperjs.org/
|
|
|
|
*
|
2013-01-28 21:03:27 -05:00
|
|
|
* Copyright (c) 2011 - 2013, Juerg Lehni & Jonathan Puckey
|
2011-07-26 07:27:36 -04:00
|
|
|
* 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,
|
2013-02-28 17:57:29 -05:00
|
|
|
svg: true,
|
2012-11-18 15:25:37 -05:00
|
|
|
version: 'dev',
|
2012-12-27 13:23:03 -05:00
|
|
|
parser: 'acorn',
|
|
|
|
debug: false
|
2011-07-26 07:27:36 -04:00
|
|
|
};
|
|
|
|
|
2011-07-27 17:00:31 -04:00
|
|
|
// This folder is specified relatively to the lib folder from which prepro.js is
|
|
|
|
// loaded, and which is referenced as the root.
|
|
|
|
include('../src/paper.js');
|