Not much yet:

void
output_object(Dwg_Object* obj){
  if (!obj)
    {
      fprintf(stderr, "object is NULL\n");
      return;
    }

  if (obj->type == DWG_TYPE_INSERT)
    {
      output_INSERT(obj);
    }

  if (obj->type == DWG_TYPE_LINE)
    {
      output_LINE(obj);
    }

  if (obj->type == DWG_TYPE_CIRCLE)
    {
      output_CIRCLE(obj);
    }

  if (obj->type == DWG_TYPE_TEXT)
    {
      output_TEXT(obj);
    }

  if (obj->type == DWG_TYPE_ARC)
    {
      output_ARC(obj);
    }
}

On Thu, May 6, 2010 at 3:29 PM, Guruprasad Rane <[email protected]>wrote:

> Hi All
>
> I am restarting my work on TestSuite for LibreDwg.
>
> I would like to know what are the different objects or elements like LINE,
> RAY, CONSTRUCTION LINE, PLOYLINE,etc does current testSVG support?
>
> Regards
> Guruprasad
>
>
>

Reply via email to