Get vertex position using Cubit Python API

Hi! I have been reviewing the Cubit Python API and I can find a function that provides the coordinates of a vertex. This question is similar to Getting a Vertex's coordinates via Python API, but no one has replied. If someone from the dev team could give direction on this it would be appreciated.

Thanks much!

I am unsure whether this is helpful but I use something like:

vertex_id=2
v=cubit.vertex(vertex_id)
coord=v.coordinates()

Hi,

You can also use cubit.get_center_point("vertex", vertex_id). That form is generic for all forms of geometry.

Karl

Both approaches worked for me. Thank you very much!