ansys / pyedb-core

Ansys Electronics Database Python Client Package
https://edb.core.docs.pyansys.com/
MIT License
2 stars 1 forks source link

PolygonData.CreateFromBBox() missing #374

Closed svandenb-dev closed 5 months ago

svandenb-dev commented 5 months ago

🔍 Before submitting the issue

🐞 Description of the bug

This method available in .NET is not implemented in gRPC.

📝 Steps to reproduce

NA

💻 Which operating system are you using?

Windows

📀 Which ANSYS version are you using?

No response

🐍 Which Python version are you using?

3.9

📦 Installed packages

NA
hiro727 commented 5 months ago

@svandenb-dev it's part of a constructor now. try passing it as

ll = (0,0)
ur = (1e-6, 1e-6)
PolygonData(lower_left=ll, upper_right=ur)