2013-05-27 18:11:32 -04:00
|
|
|
/*
|
|
|
|
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
|
|
|
* http://paperjs.org/
|
|
|
|
*
|
2015-12-27 12:09:25 -05:00
|
|
|
* Copyright (c) 2011 - 2016, Juerg Lehni & Jonathan Puckey
|
2014-01-03 19:47:16 -05:00
|
|
|
* http://scratchdisk.com/ & http://jonathanpuckey.com/
|
2013-05-27 18:11:32 -04:00
|
|
|
*
|
|
|
|
* Distributed under the MIT license. See LICENSE file for details.
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2014-08-16 12:49:35 -04:00
|
|
|
// Define __options for code preprocessing when building the library, as well as
|
|
|
|
// browser based compile-time preprocessing when loading the separate source
|
2016-01-16 09:37:02 -05:00
|
|
|
// files directly through load.js / Prepro.js during development.
|
2014-08-16 12:49:35 -04:00
|
|
|
|
2013-11-29 14:26:38 -05:00
|
|
|
var __options = {
|
2016-01-17 19:18:57 -05:00
|
|
|
version: 'dev',
|
2014-08-16 13:24:54 -04:00
|
|
|
environment: 'browser',
|
|
|
|
parser: 'acorn',
|
|
|
|
svg: true,
|
|
|
|
booleanOperations: true,
|
|
|
|
nativeContains: false,
|
2015-08-21 10:38:17 -04:00
|
|
|
paperScript: true
|
2013-05-27 18:11:32 -04:00
|
|
|
};
|