vlax-curve-getendpoint


(vlax-curve-getendpoint curveEnt)

This function returns the end point of curveEnt curve entity.

Arguments

curveEnt  (ename or vla-object) the COM object of any "curve" entity

Return

3d WCS point list, or NIL

Example

last entity is a LINE<0,0,0> to <10,10,10> :
(setq ent (vlax-ename->vla-object (entlast)))  #<VLA-OBJECT IAcadLine 000000004E8E3928>
(vlax-curve-getendpoint ent)  (10.0 10.0 10.0)

Remarks




©  Bricsys NV. All rights reserved.