2013-05-27 15:11:32 -07:00
|
|
|
/*
|
|
|
|
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
|
|
|
* http://paperjs.org/
|
|
|
|
*
|
2015-12-27 18:09:25 +01:00
|
|
|
* Copyright (c) 2011 - 2016, Juerg Lehni & Jonathan Puckey
|
2014-01-04 01:47:16 +01:00
|
|
|
* http://scratchdisk.com/ & http://jonathanpuckey.com/
|
2013-05-27 15:11:32 -07:00
|
|
|
*
|
|
|
|
* Distributed under the MIT license. See LICENSE file for details.
|
|
|
|
*
|
|
|
|
* All rights reserved.
|
|
|
|
*/
|
|
|
|
|
2014-08-16 18:49:35 +02: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 15:37:02 +01:00
|
|
|
// files directly through load.js / Prepro.js during development.
|
2014-08-16 18:49:35 +02:00
|
|
|
|
2013-11-29 20:26:38 +01:00
|
|
|
var __options = {
|
2016-01-18 01:18:57 +01:00
|
|
|
version: 'dev',
|
2014-08-16 19:24:54 +02:00
|
|
|
environment: 'browser',
|
|
|
|
parser: 'acorn',
|
|
|
|
svg: true,
|
|
|
|
booleanOperations: true,
|
|
|
|
nativeContains: false,
|
2015-08-21 16:38:17 +02:00
|
|
|
paperScript: true
|
2013-05-27 15:11:32 -07:00
|
|
|
};
|