• 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 Retrieve the value of dX and dY in the current w...

Stats

  • Locked Locked
  • Replies 18
  • Subscribers 143
  • Views 22007
  • 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 Retrieve the value of dX and dY in the current window

ClintMeyer
ClintMeyer over 14 years ago

I would like to create a script that will automatically move whatever I have selected in a layout window by the same amount as the last move.  The last move/copy/stretch relative distance is displayed in the layout window as dX and dY (standing for delta X and delta Y i presume).  Is there a skill function that returns that value?  I looked under the hiGetCurrentWindow() and it was not there.

 Thanks for any help

 Clint

 

  • Cancel
Parents
  • dmay
    dmay over 14 years ago

    One way would be to replace:

    abGetDxDy.lastDelta=mapcar('difference curPoint refPoint)

    with a conditional that checks the snap value and then sets the delta accordingly. For anyAngle, the current code works. For orthogonal, use the larger of the dx and dy and set the other to 0. For diagonal, it is a little trickier. It looks like the delta is only in the x dir when the dx is more than twice dy. The dx and dy would be the same when dx > 0 and dy > 0 and dx is not more than twice dy or less than half dy. You can experiment with this in your window.

    case(hiGetCurrentWindow()~>snapMode
      ("anyAngle" 
        abGetDxDy.lastDelta=mapcar('difference curPoint refPoint)
      )
      ("orthogonal"
        delta = mapcar('difference curPoint refPoint)
        if(car(delta) >= cadr(delta)
          abGetDxDy.lastDelta(car(delta) 0.0)
          abGetDxDy.lastDelta(0.0 cadr(delta))
        )
      )
      ("diagonal"
        println("more work is needed here")
      )
      (t
        println(strcat(hiGetCurrentWindow()~>snapMode " not supported"))
      )
    )

    Or, maybe Andrew has a simpler solution. ;-)

    Derek

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • dmay
    dmay over 14 years ago

    One way would be to replace:

    abGetDxDy.lastDelta=mapcar('difference curPoint refPoint)

    with a conditional that checks the snap value and then sets the delta accordingly. For anyAngle, the current code works. For orthogonal, use the larger of the dx and dy and set the other to 0. For diagonal, it is a little trickier. It looks like the delta is only in the x dir when the dx is more than twice dy. The dx and dy would be the same when dx > 0 and dy > 0 and dx is not more than twice dy or less than half dy. You can experiment with this in your window.

    case(hiGetCurrentWindow()~>snapMode
      ("anyAngle" 
        abGetDxDy.lastDelta=mapcar('difference curPoint refPoint)
      )
      ("orthogonal"
        delta = mapcar('difference curPoint refPoint)
        if(car(delta) >= cadr(delta)
          abGetDxDy.lastDelta(car(delta) 0.0)
          abGetDxDy.lastDelta(0.0 cadr(delta))
        )
      )
      ("diagonal"
        println("more work is needed here")
      )
      (t
        println(strcat(hiGetCurrentWindow()~>snapMode " not supported"))
      )
    )

    Or, maybe Andrew has a simpler solution. ;-)

    Derek

    • 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