This example demonstrates the use of the DELETE statement.
$$
$$ Declarations
$$
ENTITY/P(3),LN1,CR1
$$
$$ Geometry Definition
$$
P(1)=POINT/0,-.5
P(2)=POINT/0,0
P(3)=POINT/1,1.5
LN1=LINE/-1,.5,1,.5
CR1=CIRCLE/CENTER,P(1),TANTO,LN1
$$
$$ Objects Deleted
$$
DELETE/LN1,P
Objects which may be necessary for the construction of other objects, such as the line LN1, may be deleted when they are no longer of any value.
All of the points in the array P are deleted.