Shaper: get point coordinates

Hello,
In Shaper, is it possible to get the coordinates of a point created by "By distance on edge". I tried:
- Point_1.point().x()
- Point_1.point().pnt().x()
But both return a value of 1.797e+308. I’m looking for something similar to geompy.PointCoordinates.
Thank you,
Konyaro
hi,
question was raised to our developers team. Since Point_1 is not created by defining its coordinates, but by its distance on edge, the coordinates attributes are not filled.
In order to access the coordinates, they suggest to use instead:
from GeomAPI import GeomAPI_Vertex
p1= GeomAPI_Vertex(Point_1.defaultResult().shape())
p1.x()
Thanks again to the developer team for their explanations.