PyAEDT Referencing different Coordinate systems

Andy
Member Posts: 2 **
Is there a way to return values from primitives like (EdgePrimitive.midpoint) in reference to a different coordinate system that is not the global coordinate system?
Tagged:
0
Answers
-
@Massimo /@massimo_pyaedt can help with this
0 -
Hi @Andy ,
You just need to pass the coordinate list (p) to this method:
p2 = hfss.modeler.global_to_cs(p, "CS5")
This will return a new list referenced to the CS5 coordinate system.
Regards,
Samuel
0