(vlax-curve-getEndPoint ename)
The vlax-curve-getEndPoint function finds the coordinates of the end point of the specified entity.
ename specifies the entity to be analyzed.
The function returns a list of three floating-point numbers representing the WCS coordinates of the end point. If the function fails, it returns nil.
Examples
: (setq en (entlast))
<EName: 055d4b60>
: (vlax-curve-getEndPoint en)
(142.39115 230.31239 0)
Related Functions