Replies: 3 comments 4 replies
-
|
Also: # 1
>>> Db.ViewTable.desc().name()
'AcDbAbstractViewTable'
>>> Db.AbstractViewTable.desc().name()
'AcDbAbstractViewTable'
# 2
>>> Db.Fcf.desc().name()
'AcDbFcf'
>>> Db.Mline.desc().name()
'AcDbFcf'
#3
>>> Db.NurbSurface.desc().name()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
RuntimeError:
Exception! Object is NULL, in function name, Line 213, File PyRxObject.cpp:
>>> Db.NurbSurface.desc().dxfName()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
RuntimeError:
Exception! Object is NULL, in function dxfName, Line 223, File PyRxObject.cpp:
#4
>>> Db.LayerFilter.desc().name()
'AcDbSpatialFilter' |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
seems the implementation of NurbSurface is not complete in ZwCAD |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
I added tests, a couple fail in AutoCAD, I checked the methods and they are correct. FYI, the proper way to test an instance is |
Beta Was this translation helpful? Give feedback.
3 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.
-
Is this the expected result?
Beta Was this translation helpful? Give feedback.
All reactions