-
Setting ByLayer/ByBlock to blocks/blockrefs
For people interested in setting all blocks to ByLayer and all blockrefs to ByLayer at once I scripted as below with the help of PyRx. import traceback from pyrx_imp import Ap, Db print("added c…1 -
Re: surface slope arrows
@Hela Have you tried _addSurfaceLabels in combination with CivilExplorer settings? It should behave as a dynamic label similar to C3D. That's at least how I use it for small projects.1 -
BIM + Python
A cross-post for curious people. Thanks to PyRx. import traceback from pyrx_imp import Rx, Ge, Gs, Gi, Db, Ap, Ed, Bim def PyRxCmd_Bim_cmdMyBimClassify() -> None: try: db = Db.curDb() ourBuilding …3 -
Re: BIM + BrxDbProperties and Python.
Thanks for the inspiration! Here's an example using a translation table to auto-classify mechanical components as bim types. def PyRxCmd_bim_attsync(): try: # Translation table translation_table = { …1