Lines Matching refs:gridSnapping

37584 	function ResizeBehavior$1(eventBus, gridSnapping) {  argument
37587 this._gridSnapping = gridSnapping;
37628 var gridSnapping = this._gridSnapping;
37630 newBounds.width = gridSnapping.snapValue(newBounds.width, {
37634 newBounds.height = gridSnapping.snapValue(newBounds.height, {
37673 var gridSnapping = this._gridSnapping,
37679 snappedNewBounds.width = gridSnapping.snapValue(newBounds.width, {
37687 snappedNewBounds.x = gridSnapping.snapValue(newBounds.x, {
37691 snappedNewBounds.width += gridSnapping.snapValue(newBounds.x - snappedNewBounds.x, {
37717 var gridSnapping = this._gridSnapping,
37723 snappedNewBounds.height = gridSnapping.snapValue(newBounds.height, {
37731 snappedNewBounds.y = gridSnapping.snapValue(newBounds.y, {
37735 snappedNewBounds.height += gridSnapping.snapValue(newBounds.y - snappedNewBounds.y, {
37757 function SpaceToolBehavior$1(eventBus, gridSnapping) { argument
37775 snapped = gridSnapping.snapValue(event.dx);
37782 snapped = gridSnapping.snapValue(event.dy);
37807 gridSnapping: [ 'type', GridSnapping ]
37813 function AutoPlaceBehavior(eventBus, gridSnapping) { argument
37845 position[ axis ] = gridSnapping.snapValue(position[ axis ], options);
37868 function CreateParticipantBehavior$1(canvas, eventBus, gridSnapping) { argument
37889 shape.width = gridSnapping.snapValue(shape.width, { min: shape.width });
37890 shape.height = gridSnapping.snapValue(shape.height, { min: shape.height });
37906 function LayoutConnectionBehavior(eventBus, gridSnapping, modeling) { argument
37909 this._gridSnapping = gridSnapping;
37950 var gridSnapping = this._gridSnapping,
37957 snapped = snapSegment(gridSnapping, waypoints[i], waypoints[i + 1]);
38009 function snapSegment(gridSnapping, segmentStart, segmentEnd) { argument
38018 snapped.y = gridSnapping.snapValue(segmentStart.y);
38024 snapped.x = gridSnapping.snapValue(segmentStart.x);