libredwg
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [libredwg] TestSuite for LibreDwg.


From: Felipe Sanches
Subject: Re: [libredwg] TestSuite for LibreDwg.
Date: Thu, 6 May 2010 16:21:04 -0300

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 <address@hidden> 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

[Prev in Thread] Current Thread [Next in Thread]