(root)/
libredwg-0.13/
test/
unit-testing/
vertex_pface.c
       1  #define DWG_TYPE DWG_TYPE_VERTEX_PFACE
       2  #include "common.c"
       3  
       4  void
       5  api_process (dwg_object *obj)
       6  {
       7    int error;
       8    BITCODE_RC flag;
       9    dwg_point_3d point;
      10  
      11    dwg_ent_vertex_pface *vertex_pface = dwg_object_to_VERTEX_PFACE (obj);
      12  
      13    CHK_ENTITY_TYPE (vertex_pface, VERTEX_PFACE, flag, RC);
      14    CHK_ENTITY_3RD (vertex_pface, VERTEX_PFACE, point);
      15  }