tin:addpoint


(tin:addpoint  tinEname  point)

This function adds the specified point to the tinEname TinSurface entity.

Arguments

tinEname  (ename or vla-object)  the TinSurface entity to add the specified point to
point  (2d/3d point list)  the point to be added

Return

T or NIL

Example

(tin:addpoint tin '((10 80 5)  T

Remarks

when adding a large number of points to the TinSurface, it is suggested to place a database transaction around that code :

(vle-start-transaction)
(while .... )  ;; adding many points
(vle-end-transaction)

this will significantly improve the overall performance (as database + display updates are delayed untio the transaction is ended)

see (tin:addpoints) function



©  Bricsys NV. All rights reserved.