std-bpoly | ![]() |
STD-BPOLY creates a BOUNDARY polyline as with (COMMAND "_BPOLY" pt ss) resp. (C:BPOLY pt ss) in newer releases.
It is just defined to overcome the change of the function call between R13 and R14, from R14 on it is a native command, before it was an external ADS defined lisp function.
Both arguments must be given, but ss may be nil.
If the creation fails, nil is returned. Try setting the UCS origin near the point then and try it again.
If the command is not available (e.g. ACADAPP not loaded), STD-CERROR is called. So you better check by your own if the ACADAPP module is loaded (which happens sometimes in R12).
(std-bpoly (std-get1point "Pick inside") nil)
pt: A 3D point
ss: A selection set or nil
The created element if successful or nil.
See description. Only called because of its sideeffects.
(std-require 'STDMISC)
Defined in STDMISC