-
Hello, I've poked around in the Open Design specification for DWG files, but honestly its information overload, and I'm having a hard time sorting out which data I might actually care about. For example, in the attached JSON file, lets take lines 537-630 as shown below.
Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Nope. The JSON just reflects the structure of the DWG and how we store all the fields. The handles arrays changes pretty often, you have to look at the header of out_json.c to see what exactly is emitted for the handles. E.g search for VALUE_HANDLE and see ARGS_HREF11 and ARGS_HREF. ARGS_HREF11 has ref->handleref.size, ref->r11_idx, ref->absolute_ref |
Beta Was this translation helpful? Give feedback.
Nope. The JSON just reflects the structure of the DWG and how we store all the fields.
The handles arrays changes pretty often, you have to look at the header of out_json.c to see what exactly is emitted for the handles.
E.g search for VALUE_HANDLE and see ARGS_HREF11 and ARGS_HREF.
ARGS_HREF11 has ref->handleref.size, ref->r11_idx, ref->absolute_ref
ARGS_HREF has ref->handleref.code, ref->handleref.size, ref->handleref.value, ref->absolute_ref