2016-07-29 05:09:38 +03:00
|
|
|
/*
|
|
|
|
* dwg.h - Complex drawing functions
|
|
|
|
*
|
|
|
|
* Written 2016 by Werner Almesberger
|
|
|
|
* Copyright 2016 by Werner Almesberger
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef DWG_H
|
|
|
|
#define DWG_H
|
|
|
|
|
|
|
|
#include "fig.h"
|
|
|
|
|
|
|
|
|
|
|
|
void dwg_label(int x, int y, const char *s, int dir, int dim,
|
|
|
|
enum fig_shape shape);
|
2016-07-30 01:29:59 +03:00
|
|
|
void dwg_hlabel(int x, int y, const char *s, int dir, int dim,
|
|
|
|
enum fig_shape shape);
|
2016-07-29 05:09:38 +03:00
|
|
|
void dwg_glabel(int x, int y, const char *s, int dir, int dim,
|
|
|
|
enum fig_shape shape);
|
|
|
|
|
|
|
|
void dwg_junction(int x, int y);
|
|
|
|
void dwg_noconn(int x, int y);
|
|
|
|
|
|
|
|
#endif /* !DWG_H */
|