paper.js/src/options.js

26 lines
721 B
JavaScript
Raw Normal View History

/*
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
* http://paperjs.org/
*
* Copyright (c) 2011 - 2016, Juerg Lehni & Jonathan Puckey
2014-01-03 19:47:16 -05:00
* http://scratchdisk.com/ & http://jonathanpuckey.com/
*
* Distributed under the MIT license. See LICENSE file for details.
*
* All rights reserved.
*/
// Define __options for code preprocessing when building the library, as well as
// browser based compile-time preprocessing when loading the separate source
// files directly through load.js / Prepro.js during development.
var __options = {
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
};