port issues when absorbing
See original GitHub issueThis code produces some pins that don’t rotate
import gdsfactory as gf
@gf.cell
def test():
c = gf.Component()
bend = c << gf.components.bend_circular()
bend.rotate(-90)
c.add_ports(bend.ports)
c.absorb(bend)
return c
if __name__ == "__main__":
c = gf.Component("demo")
bend = c << test()
c.add_ports(bend.ports)
c.show(show_ports=True)
Issue Analytics
- State:
- Created a year ago
- Comments:9 (9 by maintainers)
Top Results From Across the Web
Packed ports and empty shelves: Inside the issues behind the ...
The problems at the ports have cascaded across the country. ... It's impossible to absorb this kind of expense so we had to...
Read more >Port Congestion Continues to Impact Liner Operations
Port and terminal congestion is continuing to impact the operations of the major container carriers into 2022.
Read more >We Were Warned About the Ports - The American Prospect
“We try to get after one issue, and then two or three more pop up.” The current structure is not only poorly positioned...
Read more >11. Port Congestion and the Supply Chain - USC Dornsife
Port Congestion and the Supply Chain: When Did All Those Ships Arrive? ... so she began eating them to absorb the excess.
Read more >A Normal Supply Chain? It's 'Unlikely' in 2022.
With the havoc at ports showing no signs of abating and prices for a vast array of goods still rising, the world is...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
great, thank you Skandan!
I think the issue is that the pins are defined as paths and not as polygons so they don’t rotate