mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-07 13:22:07 -05:00
340a1e2a5f
And create separate versions of methods that receive curve-time arguments instead of offsets. Curve#getNormalAt(time, true) -> #getNormalAtTime(true) Curve#divide() -> #divideAt(offset) / #divideAtTime(time) Curve#split() -> #splitAt(offset) / #splitAtTime(time) Curve#getParameterAt(offset) -> #getTimeAt(offset) Curve#getParameterOf(point) -> getTimeOf(point) Curve#getPointAt(time, true) -> #getPointAtTime(time) Curve#getTangentAt(time, true) -> #getTangenttTime(time) Curve#getNormalAt(time, true) -> #getNormalAtTime(time) Curve#getCurvatureAt(time, true) -> #getCurvatureAtTime(time) CurveLocation#parameter -> #time Path#split(offset/location) -> #splitAt(offset/location) Closes #563
53 lines
1.9 KiB
JavaScript
53 lines
1.9 KiB
JavaScript
/*
|
|
* Paper.js - The Swiss Army Knife of Vector Graphics Scripting.
|
|
* http://paperjs.org/
|
|
*
|
|
* Copyright (c) 2011 - 2016, Juerg Lehni & Jonathan Puckey
|
|
* http://scratchdisk.com/ & http://jonathanpuckey.com/
|
|
*
|
|
* Distributed under the MIT license. See LICENSE file for details.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
// First add Base and a couple of other objects that are not automatically
|
|
// exported to exports (Numerical, Key, etc), then inject all exports into
|
|
// PaperScope, and create the initial paper object, all in one statement:
|
|
// NOTE: Do not create local variable `var paper` since it would shield the
|
|
// global one in the whole scope.
|
|
|
|
paper = new (PaperScope.inject(Base.exports, {
|
|
// Mark fields as enumerable so PaperScope.inject can pick them up
|
|
enumerable: true,
|
|
Base: Base,
|
|
Numerical: Numerical,
|
|
Key: Key,
|
|
DomEvent: DomEvent,
|
|
DomElement: DomElement,
|
|
// Export jsdom document and window too, for Node.js
|
|
document: document,
|
|
window: window,
|
|
// TODO: Remove in 1.0.0? (deprecated January 2016):
|
|
Symbol: SymbolDefinition,
|
|
PlacedSymbol: SymbolItem
|
|
}))();
|
|
|
|
// If we're on node, require some additional functionality now before finishing:
|
|
// - PaperScript support in require() with sourceMaps
|
|
// - exportFrames / exportImage on CanvasView
|
|
if (paper.agent.node)
|
|
require('./node/extend')(paper);
|
|
|
|
// https://github.com/umdjs/umd
|
|
if (typeof define === 'function' && define.amd) {
|
|
// Support AMD (e.g. require.js)
|
|
// Use named module AMD syntax since there are other unnamed calls to
|
|
// define() inside the built library (from inlined Acorn / Esprima) that
|
|
// apparently confuse the require.js optimizer.
|
|
define('paper', paper);
|
|
} else if (typeof module === 'object' && module) { // could be `null`
|
|
// Support CommonJS module
|
|
// NOTE: Do not check typeof module.exports === 'object' since it will be
|
|
// the Base constructor function after straps.js is included.
|
|
module.exports = paper;
|
|
}
|