Re: Virtuoso cordinate



> Hi,
> Is there a function/menu in Virtuoso that if I know the (x,y) then
> I can just type in the box and the cursor highlights the coordinate
> location.
>
> Thanks,
> Hari
>

This will zoom to the specified point :

leZoomToPoint( hiGetCurrentWindow() x_coord:y_coord )

This will create a marker at the point :

geCreateMarkerByPoints(
geGetWindowCellView(hiGetCurrentWindow())
"warning"
"user"
sprintf(nil "coordinates : %g:%g" x_coord y_coord)
""
list(x_coord:y_coord)
)


Stéphane
.