diff options
author | joye <joye> | 2014-04-22 16:30:58 (GMT) |
---|---|---|
committer | joye <joye> | 2014-04-22 16:30:58 (GMT) |
commit | d057058a5547241b50fb6516bdd1fbefbb1b3654 (patch) | |
tree | 08596036be9bba1f8da1cc7ffd23b6b9d723176b /src/bltGrElemLine.C | |
parent | 8927112d1b78a02312b28cef7fd8075dda03b410 (diff) | |
download | blt-d057058a5547241b50fb6516bdd1fbefbb1b3654.zip blt-d057058a5547241b50fb6516bdd1fbefbb1b3654.tar.gz blt-d057058a5547241b50fb6516bdd1fbefbb1b3654.tar.bz2 |
*** empty log message ***
Diffstat (limited to 'src/bltGrElemLine.C')
-rw-r--r-- | src/bltGrElemLine.C | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bltGrElemLine.C b/src/bltGrElemLine.C index 6dac4ca..82170fa 100644 --- a/src/bltGrElemLine.C +++ b/src/bltGrElemLine.C @@ -27,8 +27,6 @@ * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -#include "bltMath.h" - #include "bltSpline.h" #include "bltGrElemLine.h" #include "bltGrElemOption.h" @@ -57,6 +55,7 @@ using namespace Blt; #define SCALE_SYMBOL (1<<10) +#define MIN3(a,b,c) (((a)<(b))?(((a)<(c))?(a):(c)):(((b)<(c))?(b):(c))) #define PointInRegion(e,x,y) (((x) <= (e)->right) && ((x) >= (e)->left) && ((y) <= (e)->bottom) && ((y) >= (e)->top)) #define BROKEN_TRACE(dir,last,next) \ |