paper.js/src/options.js

30 lines
704 B
JavaScript
Raw Normal View History

/*
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
* http://paperjs.org/
*
2014-01-03 19:47:16 -05:00
* Copyright (c) 2011 - 2014, Juerg Lehni & Jonathan Puckey
* http://scratchdisk.com/ & http://jonathanpuckey.com/
*
* Distributed under the MIT license. See LICENSE file for details.
*
* All rights reserved.
*/
// Define default options for browser based compile-time preprocessing.
// These are also used for building, but some values are overridden
// (e.g. version, stats).
var __options = {
parser: 'acorn',
version: 'dev',
environment: 'browser',
stats: true,
svg: true,
2013-06-13 18:53:28 -04:00
fatline: true,
booleanOperations: true,
nativeContains: false,
paperScript: true,
palette: true,
debug: false
};