Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 1x 1x 1x 1x 1x 1x | /* * Paper.js - The Swiss Army Knife of Vector Graphics Scripting. * http://paperjs.org/ * * Copyright (c) 2011 - 2020, Jürg Lehni & Jonathan Puckey * http://juerglehni.com/ & https://puckey.studio/ * * Distributed under the MIT license. See LICENSE file for details. * * All rights reserved. */ // TODO: remove eslint-disable comment and deal with errors over time /* eslint-disable */ // 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. export const SegmentSelection = { POINT: 1, HANDLE_IN: 2, HANDLE_OUT: 4, ALL: 1 | 2 | 4, // POINT | HANDLE_IN | HANDLE_OUT }; |