import BaseGuide from './base'; /** * rounds an x-y coordinate to a particular placeĀ on the canvas. Used to * align items more easily. */ export default class GuideCollection extends BaseGuide { // // snap(bounds) { // // for (var guid of this) { // if (path.intersects(bounds)) { // return path.snap(bounds); // } // } // // return bounds; // } // // intersects(bounds) { // for (var guid of this) { // if (path.intersects(bounds)) return true; // } // return false; // } }