CompuServe Archive

This is an archive of CompuServe forum messages from 1985 to 1995, as saved in transcripts by John Foust.

Search Results (4 messages)

#132260 Dimension formatting Message #132280
From: Jon Fleming Autodesk AutoCAD Forum · AutoLISP/ADS August 18, 1993 7:26 AM
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
From: Jon Fleming Autodesk AutoCAD Forum · AutoCAD August 18, 1993 7:25 AM
I'm off to Nantucket for a couple of days, then the Jersey shore … jrf
#132265 AUTOCAD12 Message #132278
From: Jon Fleming Autodesk AutoCAD Forum · AutoCAD August 18, 1993 7:25 AM
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
From: Jon Fleming Autodesk AutoCAD Forum · AutoCAD August 18, 1993 7:10 AM
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…