Lisp functions
Hello all,
I'm currently trying to find out if it would be possible to move our software from autocad to bricscad.
I've searched the developer documentation for lisp functions (grread), (grdraw), etc...
But I don't seem to find them.
My question: are these functions available in bricscad lisp?
Thanks in advance for any help.
Greetings.
I'm currently trying to find out if it would be possible to move our software from autocad to bricscad.
I've searched the developer documentation for lisp functions (grread), (grdraw), etc...
But I don't seem to find them.
My question: are these functions available in bricscad lisp?
Thanks in advance for any help.
Greetings.
0
Comments
-
The (atoms-family) function is your friend:
[code](acad_strlsort
(vl-remove
nil
(mapcar
'(lambda (x)
(if (vl-position (type (eval x)) '(exrxsubr list subr)) ; List for function-as-list.
(strcase (vl-princ-to-string x) T)
)
)
(atoms-family 0)
)
)
)[/code]0 -
For some reason certain portions have been dropped from the current BricsCAD Lisp documentation since V15.
See:
http://www.bricsys.nl/bricscad/help/en_US/V14/DevRef/index.html?page=source%2FLISP_Functions.htm0 -
That's great. They seem to be there.
The reason I'm asking here is because currently I don't have BricsCAD here on my system.
Thank you very much for the reply.0
This discussion has been closed.