• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. Moving ILLabel and normalLabel of a terminal via SKILL

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 143
  • Views 10601
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Moving ILLabel and normalLabel of a terminal via SKILL

slim15
slim15 over 4 years ago

I am trying to use SKILL to move pins in Symbol and so far I have only been able to move the figure, the bBox for the children for ILLabel and normalILabel does not get updated properly. The steps that I am doing is as follow

cv=geGetEditCellView() ;
term=dbFindTermByName(cv "IN_VIN") ;

term~>pins~>figs~>bBox = list(0.5:0.5 0.55:0.55)

Even after trying to update the bBox for the children in as follow

cv=geGetEditCellView() ; 
term=dbFindTermByName(cv "IN_VIN") ; 
foreach(pin term~>pins
  foreach(fig pin~>figs
    foreach(child fig~>children
      when(child~>objType=="label"
        child~>bBox = list(0:0 0:0)
      )
    )
  )
)

Is there a built-in command that can move all the terminals along with all their attached labels together? 

  • Cancel
  • Andrew Beckett
    Andrew Beckett over 4 years ago

    You can only set the bBox on rectangles and a couple of other shape types (like ellipse) which are completely defined by the bounding box. Most other objects, the bBox is a readonly attribute - in the case of a label, it's a function of the location of the label (the xy attribute), the text itself, the orientation, justification, font and so on. You can set the ~>xy of the label. For things like lines and polygons you'd set ~>points.

    Note that an alternative way of achieving this would be to use dbMoveFig on the pin figure rather than just setting the bBox. If you do that, any children objects get moved by the same transformation.

    Andrew

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information