• 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. How to use dbShapeQuery to get rect bbox from bottom to...

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 143
  • Views 6185
  • 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

How to use dbShapeQuery to get rect bbox from bottom to top in mosaic type?

Charley Chen
Charley Chen over 2 years ago

Hi All,

dbShapeQuery can get shape box from bottom to top for instance well,but I have shape inside mosaic .

How to handle shape inside mosaic from bottom to top?

Thak you,

Charley

  • Cancel
  • Andrew Beckett
    Andrew Beckett over 2 years ago

    Charley,

    I use a combination of dbGetHierPathTransform and abGetHierPathShape (unfortunately this function doesn't exist as a built-in):

    (defun abGetHierPathShape (overlap)
      (if (listp overlap)
        (abGetHierPathShape (cadr overlap))
        overlap))

    Then you can do (say):

    theShapes=dbShapeQuery(geGetEditCellView() list("Metal3" "drawing") enterBox()) ; use enterBox to define the rectangle for testing
    newShapes=foreach(mapcar obj theShapes dbCopyFig(abGetHierPathShape(obj) geGetEditCellView() dbGetHierPathTransform(obj)))
    newShapes~>layerName="Via1" ; just to make them stand out

    Regards,

    Andrew

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Charley Chen
    Charley Chen over 2 years ago in reply to Andrew Beckett

    Hi Andrew ,

    Thanks for reply for solution.

    If i don't have the cellview's permission and  just get the bbox of the shape info bottom to top  , How to do it ?

    Charley

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 2 years ago in reply to Charley Chen

    Rather than using dbCopyFig, you can use dbTransformBBox. For example:

    theShapes=dbShapeQuery(geGetEditCellView() list("Metal3" "drawing") enterBox()) ; use enterBox to define the rectangle for testing
    topBBoxes=foreach(mapcar obj theShapes dbTransformBBox(abGetHierPathShape(obj)~>bBox dbGetHierPathTransform(obj)))

    Andrew

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Charley Chen
    Charley Chen over 2 years ago in reply to Andrew Beckett

    Hi Andrew ,

    Thank you very much for that.

    Charley

    • 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