diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2004-03-04 16:02:12 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2004-03-04 16:02:12 +0000 |
commit | 45f798531af74946d50b65406f85abf0fcf90e9c (patch) | |
tree | 596d89cfe28c6432cb5149ab6bcba360493d2f53 /graphics/fractorama/files/patch-src::lib::fractal::DoubleNode.h | |
parent | Lighten dependencies (diff) |
- Update to version 1.6.7
PR: ports/63750
Submitted by: Ports Fury
Notes
Notes:
svn path=/head/; revision=102919
Diffstat (limited to 'graphics/fractorama/files/patch-src::lib::fractal::DoubleNode.h')
-rw-r--r-- | graphics/fractorama/files/patch-src::lib::fractal::DoubleNode.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/graphics/fractorama/files/patch-src::lib::fractal::DoubleNode.h b/graphics/fractorama/files/patch-src::lib::fractal::DoubleNode.h index ac46e33364fa..1b452064f7cc 100644 --- a/graphics/fractorama/files/patch-src::lib::fractal::DoubleNode.h +++ b/graphics/fractorama/files/patch-src::lib::fractal::DoubleNode.h @@ -1,13 +1,12 @@ ---- lib/fractal/DoubleNode.h.bak Sat Dec 1 01:27:59 2001 -+++ lib/fractal/DoubleNode.h Sun Dec 22 06:06:53 2002 -@@ -1,7 +1,9 @@ +--- lib/fractal/DoubleNode.h.orig Fri Oct 24 22:31:52 2003 ++++ lib/fractal/DoubleNode.h Tue Mar 2 23:08:44 2004 +@@ -1,7 +1,8 @@ #ifndef _DOUBLE_NODE_H_ # define _DOUBLE_NODE_H_ -class ostream; +#include <iostream> +using namespace std; -+ - class ComplexVariables; - class DoubleVariables; - class ColorEnvironment; + + #define RND(x) ((x) >= 0.0 ? (int)((x) + 0.5) : (int)((x) - 0.5)) + |