• 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 get coordinates of layers

Stats

  • Locked Locked
  • Replies 6
  • Subscribers 145
  • Views 19679
  • 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 get coordinates of layers

PDCHino
PDCHino over 12 years ago
Greetings!

I want to get coordinates of layers of the selected object.

What what SKILL commands or program will I use?

For example:

I have a resistor in a layout, I select it then execute a SKILL commands or program.

The result will be the x and y coordinates of the layers of the resistor I selected.
  • Cancel
Parents
  • psill
    psill over 12 years ago

    I am assuming you the layout is flat data or shapes, not instances or pcells

    This might get you some info to start.

    load the script 

    Select your shapes then excute the script.

     procedure(printPts()
    let(    (type
        (cnt 0)
        (objList geGetSelSet()))

    foreach(obj objList
        ++cnt
        type = obj~>objType
        case(type
            ("inst"
                printf("%s %L at %L\n" type obj~>xy))
            ("rect"
                printf("%s on layer %L at %L\n" type obj~>lpp obj~>bBox))
            ("polygon"
                printf("%s on layer %L at %L\n" type obj~>lpp obj~>points))
            ("path"
                printf("%s on layer %L at %L\n" type obj~>lpp obj~>points))
            ("pathSeg"
                printf("%s on layer %L at %L\n" type obj~>lpp list(obj~>beginPt obj~>endPt)))
            ("label"
                printf("%s on layer %L at %L\n" type obj~>lpp obj~>xy))
            (t    printf("%s not defined\n" type))
        )
    )
    printf("%n objects selected\n" cnt)
    ); end of let
    ); end of printPts

    You can find more about the objects from selecting an object/s then executing in the ciw the command geGetSelSet()~>? this will output the variables to the object or geGetSelSet()~>?? will output the variables and values.

    psill 

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • psill
    psill over 12 years ago

    I am assuming you the layout is flat data or shapes, not instances or pcells

    This might get you some info to start.

    load the script 

    Select your shapes then excute the script.

     procedure(printPts()
    let(    (type
        (cnt 0)
        (objList geGetSelSet()))

    foreach(obj objList
        ++cnt
        type = obj~>objType
        case(type
            ("inst"
                printf("%s %L at %L\n" type obj~>xy))
            ("rect"
                printf("%s on layer %L at %L\n" type obj~>lpp obj~>bBox))
            ("polygon"
                printf("%s on layer %L at %L\n" type obj~>lpp obj~>points))
            ("path"
                printf("%s on layer %L at %L\n" type obj~>lpp obj~>points))
            ("pathSeg"
                printf("%s on layer %L at %L\n" type obj~>lpp list(obj~>beginPt obj~>endPt)))
            ("label"
                printf("%s on layer %L at %L\n" type obj~>lpp obj~>xy))
            (t    printf("%s not defined\n" type))
        )
    )
    printf("%n objects selected\n" cnt)
    ); end of let
    ); end of printPts

    You can find more about the objects from selecting an object/s then executing in the ciw the command geGetSelSet()~>? this will output the variables to the object or geGetSelSet()~>?? will output the variables and values.

    psill 

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

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