CMS IntelliCAD 14 #437
CEXT-Dan
announced in
Announcements
Replies: 3 comments
-
|
screen shots
|
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Here's the test results, there's a few failures |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
calling Db.Entity.close() in CMS deletes the object and disrupts garbage collection. import traceback
from pyrx import Db, Ap, Ed, Ge, Gi, Rx
def getHandle(id : Db.ObjectId):
bt = Db.BlockTable(id)
return bt.getHandle()
@Ap.Command()
def doit():
try:
db = Db.curDb()
hn = getHandle(db.blockTableId())
id2 = db.getObjectId(False,hn)
print (db.blockTableId() == id2)
except Exception as err:
traceback.print_exception(err)
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Uh oh!
There was an error while loading. Please reload this page.
-
I periodically play around with other CAD platforms, just to see how they are progressing. Surprisingly, CMS IntelliCAD 14 compiled. It has a lot of issues, but it’s good enough to do some fun stuff, i.e. read side databases, iterate the database, and do data extraction. Most importantly, connect to the Python Eco system
I actually did not intend to add support for it. I don’t have a dev seat, or a contact to report bugs, and I’m blocked from the forums due to location restrictions, however, its coming along nicely. In the spirit of open-source, maybe someone else want to play.
I plan on adding builds for it, but’s DIY with regards to support 😁
Beta Was this translation helpful? Give feedback.
All reactions