You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The SnapToNearestEdge is a subclass of SnappingSheetBehavior , which will snap to the closest edge within the sheet's draggable range. This feature is handy as it serves as a simplified and performance-optimized version of a SnapToNearest which only consists of two snap positions, namely minExtent and maxExtent.
// SnapToNearestEdge is functionally identical to this:SnapToNearest(
snapTo: [ minExtent, maxExtent ],
);
The text was updated successfully, but these errors were encountered:
The
SnapToNearestEdge
is a subclass ofSnappingSheetBehavior
, which will snap to the closest edge within the sheet's draggable range. This feature is handy as it serves as a simplified and performance-optimized version of aSnapToNearest
which only consists of two snap positions, namelyminExtent
andmaxExtent
.The text was updated successfully, but these errors were encountered: