Machine Controller method parameter clarification #120
-
Hello all, I am working on some plugins using the C++ API for CadWork, however I am running into difficulty with understanding the parameters for the methods. I believe the Python API follows the same pattern, so I was hoping to get some help here. I would really appreciate any help! |
Beta Was this translation helpful? Give feedback.
Answered by
Brunner246
Jan 26, 2024
Replies: 1 comment 1 reply
-
This is at the moment not well documented/implemented. But you find the needed answers in enum weinmannMfbVersion
{
wup_2_0 = 20,
wup_3_1 = 31,
wup_3_2 = 32,
wup_3_3 = 33,
wup_3_4 = 34
}; or in python https://docs.cadwork.com/projects/cwapi3dpython/en/latest/documentation/enums/ |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jetwatki
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is at the moment not well documented/implemented. But you find the needed answers in
CwAPI3DTypes.h
There are the required enums available.
or in python https://docs.cadwork.com/projects/cwapi3dpython/en/latest/documentation/enums/