From d46e416c29f03d6575cd72db4b66da3481dbadde Mon Sep 17 00:00:00 2001 From: Matt Guthaus Date: Wed, 11 Jan 2017 09:23:17 -0800 Subject: [PATCH] Change snap to grid function name --- compiler/utils.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/compiler/utils.py b/compiler/utils.py index bca2c218..2e400843 100644 --- a/compiler/utils.py +++ b/compiler/utils.py @@ -5,7 +5,6 @@ import globals OPTS = globals.OPTS -<<<<<<< HEAD def snap_to_grid(offset): """ Changes the coodrinate to match the grid settings @@ -26,9 +25,6 @@ def gds_pin_center(gdsPin): """ This returns the center of a pin shape """ -======= -def gdsPinToOffset(gdsPin): ->>>>>>> master boundary = gdsPin[2] return [0.5 * (boundary[0] + boundary[2]), 0.5 * (boundary[1] + boundary[3])]