phidl icon indicating copy to clipboard operation
phidl copied to clipboard

Python GDS layout and CAD geometry creation

Results 17 phidl issues
Sort by recently updated
recently updated
newest added

I have checked this on large designs and found this to work more robustly. The previous algorithm failed when creating devices on different machines, where the arrays were basically identical,...

``` import phidl.device_layout as pd import phidl.geometry as pg nm = 1e-3 c = pd.Device() r1 = c

How can we connect two structures that have non-manhattan connections with offgrid ports? ``` import phidl.path as pp import phidl.device_layout as pd if __name__ == "__main__": c = pd.Device('non-manhattan-connect') b...

Hi Adam, this PR allows you to define ports with None orientation, which i find useful for routing low speed electrical routes let me know what you think Joaquin

@amccaugh , this PR builds on #163 and #164. I got practically all the tests running, though not passing regressions. However, I currently hack it into working by disabling garbage...

ported basic functionality from gdspy to gdstk backend ``` from phidl import Device from phidl import quickplot as qp # Rename "quickplot()" to the easier "qp()" import phidl.geometry as pg...

Hi, I just came across this wonderful package and it's been just great! I wanted to ask if there is a method to move objects along a circle? i.e. by...