(vlax-curve-getStartPoint ename)
The vlax-curve-getStartPoint function finds the coordinates of the start 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 start point. If the function fails, it returns nil.
Examples
: (setq en (entlast))
<EName: 055d4b60>
: (vlax-curve-getStartPoint en)
(49.21593 61.57434 0)
Related Functions