(root)/
libredwg-0.13/
test/
unit-testing/
camera.c
       1  // no coverage, named view, not persistent in a DWG. CAMERADISPLAY=1
       2  #define DWG_TYPE DWG_TYPE_CAMERA
       3  #include "common.c"
       4  
       5  void
       6  api_process (dwg_object *obj)
       7  {
       8    int error = 0;
       9    BITCODE_H view;
      10  
      11    dwg_ent_camera *camera = dwg_object_to_CAMERA (obj);
      12    CHK_ENTITY_H (camera, CAMERA, view);
      13  }