mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-08 05:42:07 -05:00
21 lines
651 B
JavaScript
21 lines
651 B
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.
|
|
*/
|
|
|
|
// Path#_segmentSelection is the addition of all segment's states, and is
|
|
// compared with SegmentSelection.ALL, the combination of all
|
|
// SegmentSelection values to see if all segments are fully selected.
|
|
var SegmentSelection = {
|
|
POINT: 1,
|
|
HANDLE_IN: 2,
|
|
HANDLE_OUT: 4,
|
|
ALL: 1 | 2 | 4 // POINT | HANDLE_IN | HANDLE_OUT
|
|
};
|