This is an archive of CompuServe forum messages from 1985 to 1995, as saved in transcripts by John Foust.
Search Results (4 messages)
I'd love to see it. Could you mail it to me or post it in the forum library? With the DCL would be best, making it useful to more people. jrf
#132229-
AutoLISP
Message #132279
I'm off to Nantucket for a couple of days, then the Jersey shore … jrf
The RANS function does what you want. The syntax is (trans ). and may be 0 for WCS, 1 for UCS, an entity name, or an entity extrusion vector, or a few other things. To translate a polyline vertex to WCS: (trans vertex 0) jrf
#132108-
AutoLISP
Message #132277
I relized there's a way to do the innermost loop more efficiently, so here's a better version of (bsort): ; A routine to sort a list of items using the bubble sort algorithm. ; The bubble sort isn't particularly fast, but it's simple and needs ; no auxiliary storage. An…