summaryrefslogtreecommitdiff
path: root/app/bin/dxfformat.h
diff options
context:
space:
mode:
Diffstat (limited to 'app/bin/dxfformat.h')
-rw-r--r--app/bin/dxfformat.h20
1 files changed, 12 insertions, 8 deletions
diff --git a/app/bin/dxfformat.h b/app/bin/dxfformat.h
index dbb1ee9..d0bd7ab 100644
--- a/app/bin/dxfformat.h
+++ b/app/bin/dxfformat.h
@@ -17,7 +17,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef HAVE_DXFFORMAT_H
@@ -25,8 +25,7 @@
#include "dynstring.h"
-enum DXF_DIMENSIONS
-{
+enum DXF_DIMENSIONS {
DXF_DIMTEXTSIZE,
DXF_DIMARROWSIZE
};
@@ -35,14 +34,19 @@ void DxfLayerName(DynString *result, char *name, int layer);
void DxfFormatPosition(DynString *result, int type, double value);
void DxfLineStyle(DynString *result, int isDashed);
-void DxfLineCommand(DynString *result, int layer, double x0, double yo, double x1, double y1, int style);
-void DxfCircleCommand(DynString *result, int layer, double x, double y, double r, int style);
-void DxfArcCommand(DynString *result, int layer, double x, double y, double r, double a0, double a1, int style);
-void DxfTextCommand(DynString *result, int layer, double x, double y, double size, char *text);
+void DxfLineCommand(DynString *result, int layer, double x0, double yo,
+ double x1, double y1, int style, int color);
+void DxfCircleCommand(DynString *result, int layer, double x, double y,
+ double r, int style, int color);
+void DxfArcCommand(DynString *result, int layer, double x, double y, double r,
+ double a0, double a1, int style, int color);
+void DxfTextCommand(DynString *result, int layer, double x, double y,
+ double size, char *text, int color);
void DxfUnits(DynString *result);
void DxfDimensionSize(DynString *result, enum DXF_DIMENSIONS dimension);
-void DxfPrologue(DynString *result, int layerCount, double x0, double y0, double x1, double y1);
+void DxfPrologue(DynString *result, int layerCount, double x0, double y0,
+ double x1, double y1);
void DxfEpilogue(DynString *result);
#define DXF_INDENT " "