diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2024-11-14 19:35:45 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2024-11-14 19:35:45 +0100 |
commit | df5520aa2dae5b3ce7abf8733dcdd152898af163 (patch) | |
tree | 00d3047bfb14f682bfb5a21010c731ed649bfed7 /app/bin/dxfformat.h | |
parent | df247efec654e512242e4f4f1b0212034f9e01fe (diff) | |
parent | ec3c0f6f6e7153fa797dc57a0e95779cbc63a23b (diff) |
Merge branch 'release/debian/1_5.3.0GA-1'debian/1_5.3.0GA-1
Diffstat (limited to 'app/bin/dxfformat.h')
-rw-r--r-- | app/bin/dxfformat.h | 20 |
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 " " |