weird function?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
hey experts,
The following function returns a list of 4 angles and than causes AutoCAD to stuck and the cause of this is (angtos) can any one figure why?
(setq _degrees
(lambda ()
(mapcar
(function
(lambda (ang)
(angtos ang 0 4)
)
)
(list (/ pi 4) (* (/ pi 2) 3) (* (/ pi 2) 5) (* (/ pi 2) 7))
)
)
)