Hi all,
I am working to use libdxfrw library. I have gone through files
involving writing of a line to DXF file. I created an instance of
DRW_Line and set the values of the base point and second point of the
line.
DRW_Line line;
line.basePoint.x = 10;
line.basePoint.y = 20;
line.secPoint.x = 30;
line.secPoint.y = 30;
qDebug() << line.basePoint.x;
dxf->writeLine(&line);
However, I could not achieve it. I have also referred the "testcp"
the example given at SourceForge but it did not work either. The first
thing I want to achieve is to write a line to DXF file. Please help me
achieving this.
Mandeep Singh