Lisp to draw circles and lines as blocks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
1.is any lisp available to draw blocks(circular) where i can give the x y z of a individual block and its diameter in text file?.
Name X Y Z Diameter
A1 100 -50 0 10
A2 -100 50 0 15
A3 -100 -50 0 13
A3 100 50 0 8
A1 is the block name which is given at center of the circular block
(x,y,z) - (100,-50,0) is the loaction where the circular block have to be created
10 is the diameter of the circular block at their corresponding location.
2. Draw a line(block) between locations(coordinates) which can be given in notepad(text)file.
X Y Z name
100 -50 0 A1-A2 /* Start point
-100 50 0 A1-A2 /* End point
line drawn between (100,-50,0) to (-100,50,0)
the name of the line will be "A1-A2"