home *** CD-ROM | disk | FTP | other *** search
/ ftp.xmission.com / 2014.06.ftp.xmission.com.tar / ftp.xmission.com / pub / lists / fractint / archive / fractint.199906 < prev    next >
Internet Message Format  |  1999-06-30  |  155KB

  1. From: Paul Derbyshire <pderbysh@usa.net>
  2. Subject: (fractint) Two fractal formats.
  3. Date: 01 Jun 1999 01:24:57 MDT
  4.  
  5. A simple, universal format for recording the details needed to color and
  6. recolor an image, is as follows. All quantities are big-endian for consis=
  7. tency
  8. across platforms.
  9.  
  10.  
  11.  
  12. offset  qty.           type     description
  13. 0x0000  1              ushort   width
  14. 0x0002  1              ushort   height
  15. 0x0004  1              ushort   # of distinct regions/basins. Basins will=
  16.  be
  17. numbered from 0 to this number minus one.
  18. 0x0006  width*height   record
  19.                        offset  qty.   type    description
  20.                        0x0000  1      ushort  basin number
  21.                        0x0002  1      double  pixel value (a double can b=
  22. e
  23. used to hold integers with 56 bits precision)
  24.  
  25.  
  26. A rendering program will have to scan over all of the data to discover ho=
  27. w
  28. many basins there are and for each, what the
  29. minimum and maximum values for the value are. This can be done while load=
  30. ing
  31. in the data. This is to keep the file format
  32. simple. The file format can be modified by augmenting it with a compressi=
  33. on
  34. scheme such as LZSS.
  35.  
  36.  
  37.  
  38.  
  39.  
  40. A slightly less simple format I have devised to record enough to allow th=
  41. e
  42. image to be resumed, zoomed, or the parameters
  43. tweaked, or evolved, follows. It relies on the supposition of the develop=
  44. ment
  45. of an essential infrastructure.
  46.  
  47.  
  48. The infrastructure would be a namespace system for the naming of formulas=
  49. =2E I
  50. propose the following: each person use some
  51. easily-recognizable component of their name as their namespace name. They=
  52.  name
  53. their formulas in this scheme with that as a
  54. prefix. I'd use PGD for mine, so PGD::Nova is the full name for the Nova
  55. formula. Names will apply to Julibrot objects or to
  56. stand-alone Julia types.
  57.  
  58. The classics, e.g. Mandelbrot, Julia, etc. would be named as they are.
  59.  
  60.  
  61. Some classic (escape-time, 2 dimensional) fractals and their proposed nam=
  62. es.
  63.  
  64. Fractal             Proposed name
  65. z^2+c               Mandelbrot
  66. z^n+c (n integer)   IntPMandelbrot
  67. z^x+c (x real)      RealPMandelbrot
  68. z^w+c (w complex)   CplxPMandelbrot                (corresponds to fracti=
  69. nt
  70. type=3Dmanzpower, julzpower)
  71. z^z+z^w+c           ZZMandelbrot                   (type=3Dmanzzpwr, julz=
  72. zpwr)
  73. rx(1-x)             LambdaMandelbrot               (type=3Dlambda, mandel=
  74. lambda)
  75. c*f(z)              CfnMandelbrot                  (type=3Dlambdafn, mand=
  76. elfn)
  77. Newton z^n-1        NewtonUnity                    (type=3Dnewton, newtba=
  78. sin)
  79.                                                    (Unity as it is roots =
  80. of
  81. unity and not general Newton)
  82.                                                    (Not a julibrot.)
  83. Newton z^w-1 (w complex)      CplxNewton           (type=3Dcomplexnewton)=
  84.  
  85.                                                    (Not a julibrot.)
  86. Newton z^3 + (c-1) z - c      NewtonCubic          (Generic cubical equat=
  87. ion
  88. Newton)
  89.  
  90.  
  91. Formulas will have parameter names associated with their parameters. The
  92. name's meaning is determined by the formula in
  93. context. The commonest names will be:
  94.  
  95.  
  96. name    type               description
  97. seed    complex or hyper   Julia c values. May also be a vector quantity =
  98. for
  99. some formulas.
  100. init    "       "  "       Mandel z_0 values. A critical point or value, =
  101. e.g.
  102. 0 for Mandelbrot, gives a true Mandelbrot
  103.                            fractal. Any other value gives a perturbed
  104. Mandelbrot.
  105. exponent  integer, real, complex, hyper depending on formula
  106.                            Exponent in Newton and z^n+c types. Analogous =
  107. for
  108. others.
  109. function                   The function in CfnMandelbrot and friends.
  110. function1, function2 ...     In multi-function relatives of lambdafn, lik=
  111. e
  112. Fractint's fn1*fn2+c.
  113. For all of these, defaults are set by formula-specification.
  114.  
  115.  
  116. Formulas will be assumed to have the attractors to check for specified in=
  117.  the
  118. formula.
  119. A word on attractors. For Julia types, attractors are sought out by
  120. "discovery".
  121. For Mandelbrot types, attractors are specified in the formula, either as =
  122. fixed
  123. quantities (e.g. infinity for Mandelbrot)
  124. or as some function of the parameters (as with Nova). Two special attract=
  125. or
  126. types will be infinity or find_fixed_point.
  127. The latter will collect all points that tend to settle to one finite valu=
  128. e.
  129. Functions will be specifiable in some complex, yet to be devised format. =
  130. A
  131. fractal formula specification consists of:
  132.  
  133.  
  134. string      1      Formula name with qualification, e.g. PGD::Nova.
  135. string      1      Comments. See below about format for a comment string.=
  136.  
  137. record      any    Parameter specifications.
  138.                    type    qty.    description
  139.                    string  1       name of parameter
  140.                    string  1       type-id, 'integer', 'real', 'complex'
  141. allowed, 'complex' can be supplanted
  142.                                    with hypercomplex with the hyper flag =
  143. on.
  144.                    uint    1       Number of dimensions for a vector valu=
  145. e,
  146. normally 1.
  147.                    bool    1       Periodicity-checking applies to this
  148. parameter? (Normally no except for the iteration
  149.                                    variable)
  150.                    The first parameter specified is the iteration variabl=
  151. e
  152. (possibly a vector). Its name will often be 'init'
  153.                    to match the above convention for the classic types.
  154. delimiter
  155. n-place-function  1   Specifies the new value of the first parameter in t=
  156. erms
  157. of all of the parameter values (incl. previous
  158.                       value of first parameter). May be a vector-valued
  159. function to match the first parameter's nature.
  160. bool        1      Suppress Julibrot behavior and act pure Julia. (e.g.
  161. NewtonUnity.)
  162.  
  163.  
  164. This will usually specify a Julibrot object. A Julia set is taken by fixi=
  165. ng
  166. parameters in the image except to pixel-vary
  167. init. A Mandelbrot set (or slice thereof) is taken by pixel-varying a sli=
  168. ce of
  169. the parameter space except for the fixing
  170. of init at a critical point or critical value. A perturbed Mandelbrot set=
  171.  is
  172. taken by doing the same except to fix init at a
  173. point that isn't a critical point or critical value. An oblique slice is =
  174. taken
  175. by using some other more general manner of
  176. slicing.
  177.  
  178. If there is one init parameter and one other, seed parameter, you have a =
  179. 4-D
  180. Julibrot with planar M-sets and planar
  181. Julia sets.
  182.  
  183.  
  184. To specify the classic M-set Julibrot:
  185.  
  186. string    Mandelbrot
  187. string    The original classic!
  188. record    string    init
  189.           string    complex
  190.           uint      1
  191.           bool      true
  192. record    string    seed
  193.           string    complex
  194.           uint      1
  195.           bool      false
  196. delimiter
  197. n-place-function      (init |-> init*init+seed, specified somehow)
  198. bool      false
  199.  
  200.  
  201. A convolution is a collection of n n-place functions, where n is the numb=
  202. er of
  203. parameter-space dimensions, often 4.
  204. The dimension of a convolution should match the dimension of the fractal =
  205. to
  206. which it is applied, in the larger sense.
  207.  
  208. An escape shape is a function that returns a bool from a vector, dependin=
  209. g on
  210. the vector escaping a certain shape. The shape
  211. should have a radius of around 1, it will be scaled automatically when us=
  212. ed.
  213.  
  214. A plane through the origin in n dimensions is specified by n real
  215. coefficients. These will be termed c_1, ..., c_n, and
  216. the real basis components for the parameter space x_1, ..., z_n. Then the=
  217.  
  218. plane specified is that satisfying:
  219. c_1*x_1 + c_2*x_2 + ... + c_n*x_n =3D 0.
  220.  
  221. Format: a ushort, the number of dimensions, then n reals.
  222.  
  223.  
  224. How to specify an arbitrary n-valued function.
  225.  
  226.  
  227. record    any    Parameters
  228.                  string     1    name
  229.                  string     1    type  (bool, integer, real, complex,
  230. function)
  231. delimiter
  232. record    any    Temporaries
  233.                  string     1    name
  234.                  string     1    type  (bool, integer, real, complex)
  235. delimiter
  236. record    any    calculation steps
  237.                  string     1    operation to perform: add, multiply, squ=
  238. are,
  239. recip, <=3D, >=3D, invoke parametrized function,
  240.                                  etc. Two special ops: 1. Set a label. 2.=
  241.  
  242. Branch to a label if param 1 is true.
  243.                  string     1    dest-param [If operation to perform is a=
  244. n
  245. assignment and not a conditional]
  246.                  bool       1    source-param-1 is a parameter.
  247.                  string     1    source-param-1  [If source-param-1 is a
  248. parameter]
  249.                  some type  1    source-param-1  [If not, i.e. source-par=
  250. am-2
  251. is a constant]
  252.                  string     1    source-param-2  [Only if operation is bi=
  253. nary
  254. and not unary and it's a parameter here.]
  255.                  some type  1    source-param-1  [Only if operation is bi=
  256. nary
  257. and not unary and it's a constant here.]
  258.                  string     1    param-name of function to invoke [only i=
  259. f
  260. that is the operation to perform]
  261.                  string     1    label-name if we are declaring a label o=
  262. r
  263. conditionally branching to one.                 =
  264.  
  265. delimiter
  266. string    1      name of temporary to return.
  267. ulong     1      Maximum number of steps before aborting. Ensures the fun=
  268. ction
  269. cannot hang.
  270. return type  1   Value to return on abort.
  271.  
  272.  
  273. When these are compiled:
  274. * Type mismatches between number and function values will cause an error.=
  275.  
  276. * Conversions will be implicitly inserted among the non-function types.
  277.   Anything to bool: 0 =3D false, anything else =3D true.
  278.   Bool to anything: false =3D 0, true =3D 1.
  279.   Integer to real to complex: As expected, value unchanged.
  280.   Complex to real: Chop all but real component.
  281.   Real to integer: Round to nearest, round 0.5 up.
  282. * Integer operations and such may be optimized, e.g. z^3 should be as fas=
  283. t as
  284. possible if the parameter 3 is an integer type,
  285.   and in particular will then be faster than if the 3 was in a complex
  286. parameter type.
  287. * Operations using constants should be faster by taking advantage of the =
  288. exact
  289. value of the constant if it is a small integer.
  290.   I.e. z^2 with the 2 constant can be translated into the fast cplx sqyar=
  291. ing
  292. procedure.
  293. * Function parameters must be either unary or binary functions. Ident, ze=
  294. ro,
  295. one, recip, sqr, add, multiply, etc.
  296. * The defined function's return type is that of the parameter named near =
  297. the
  298. end as the return. It is returned at successful
  299.   exit of the loop.
  300. * The parameter of a branch is implicitly converted to a boool of course.=
  301.  
  302. * Some fast operations for integers: increment, decrement, ...
  303. * Manner of compilation is application-dependent. Compilation to a linked=
  304.  list
  305. of function pointers or to byte codes is
  306.   platform-independent. JIT compilation to native machine instructions is=
  307.  also
  308. an option for ultrafast operation on specific
  309.   targets.
  310.  
  311.  
  312.  
  313.  
  314.  
  315. With that taken care of, some fractal parameters that are universal regar=
  316. dless
  317. of formula:
  318.  
  319. center       complex or hyper     Center of image   Default: Depends on
  320. formula.
  321. mag          real                 Magnification: 1 will mean the image ha=
  322. s a
  323. longer dimension of 1 in the fractal space.
  324.                                   10 will mean the larger dimension is 0.=
  325. 1,
  326. and so forth by reciprocals.
  327.                                   Default: depends on formula.
  328. rotation     real                 In degrees: image rotation (clockwise).=
  329.  
  330. Default: 0.
  331. skew         real                 Skew. Default: 0.
  332. maxiter      ulong                Maximum number of iterations to try.
  333. Default: 2048.
  334. hyper-flag   bool                 Hypercomplex or not. Affects the nature=
  335.  of
  336. center. Default: false.
  337. quat-flag    bool                 Quaternion flag. Mutually exclusive wit=
  338. h
  339. hyper-flag and with formulas using trig/exp on a
  340.                                   complex parameter.
  341.                                   Either of these doubles all parameter s=
  342. pace
  343. dimensions.
  344.  
  345. outer_radius real                 Radius (not squared) for checking escap=
  346. e to
  347. infinity if there is an attractor there.
  348.                                   Default: depends on formula.
  349. inner_radius real                 Target radius around all finite attract=
  350. ors.
  351.                                   Default: depends on formula.
  352. outer_shape  string               Formula name for an escape-shape formul=
  353. a.
  354. Builtins such as "circle", "square", "astroid",
  355.                                   "ribbon", ...
  356.                                   Default: circle.
  357. inner_shape  string               Same. Determines the shapes of target a=
  358. reas
  359. around finite attractors or fixed-point-trap.
  360.                                   Default: circle.
  361. outer_shape_parms  various        Depends on shape. Might be aspect ratio=
  362.  of
  363. an ellipse, etc.
  364.                                   Defaults: depend on shapes.
  365. inner_shape_parms  various        Depends on shape. Might be aspect ratio=
  366.  of
  367. an ellipse, etc.
  368.                                   Defaults: depend on shapes.
  369.  
  370.  
  371.  
  372.  
  373.  
  374. Whatever varies by pixel, if the parameter in question is assigned-to in =
  375. the
  376. parameter list, this assignment is ignored
  377. (the pixel overrides) and a warning generated.
  378.  
  379.  
  380. Now, the fractal description would be as follows. Here, as variable-lengt=
  381. h
  382. strings are used there will be no offsets
  383. specified. Type 'string' means ASCII, null-terminated. A formula name or
  384. parameter name is as above. =
  385.  
  386.  
  387.  
  388. parameter-block-marker
  389. type     qty.     description
  390. string   1        Description and comments, including linefeeds for line
  391. breaks, null terminated as always. Default: A null
  392.                   by itself (empty string) or perhaps computer-generated,=
  393.  say,
  394. date and time written and CPU detected.
  395. string   1        formula name     Default: Mandelbrot.
  396. string   1        convolution of coordinates -- a named convolution formu=
  397. la  =
  398.  
  399. Default: identity.
  400. string   any      paramater-name =3D value. Values may be in high precisi=
  401. on,
  402. forcing supporting software to use
  403.                   high precision if any value is (or if the mag is high
  404. enough) and non-supporting software to complain or
  405.                   generate fuzzy or imprecise images. Default: defaults.
  406.                   Sets parameters for formula, convolution, escape traps,=
  407.  and
  408. so forth.
  409. delimiter         =
  410.  
  411.  
  412. The next stuff is in three optional, mutually-exclusive groups.
  413.  
  414. full-julibrot-flag                Makes image an arbitrary Julibrot slice=
  415. =2E
  416. plane        real coefficient list  Default: plane is some interesting
  417. opblique plane in parameter space.
  418.                                   Determines equation of plane through or=
  419. igin.
  420.                                   Image slices hypercomplex and/or julibr=
  421. ot
  422. slices or many-dimensional
  423.                                   Julia sets. Image center is in full
  424. parameter-space and slice plane is through this
  425.                                   parallel to plane whose equation is giv=
  426. en.
  427. OR
  428.  
  429. julia-flag                        Makes image a Julia set.
  430. plane-flag                        True means a plane follows.
  431. plane                             Slice for vector space of "init". Plane=
  432.  
  433. through origin as usual. Slice through parameter
  434.                                   space is parallel and through center.
  435. Default is flat in first two real components in
  436.                                   vector.
  437.  
  438.  
  439. OR
  440.  
  441. mandelbrot-flag                   Makes image an M-set.
  442. string      1                     Parameter-name: names parameter that va=
  443. ries
  444. by pixel and determines image center.
  445.                                   Center is a vector of that parameter.
  446. plane-flag                        True means a plane follows.
  447. plane                             Slice for parameter space. Plane throug=
  448. h
  449. origin as usual. Slice through parameter space is
  450.                                   parallel and through center. Default is=
  451.  flat
  452. in first two real components in vector.
  453.  
  454.  
  455. [Now the fractal is specified, independent of coloring schemes or display=
  456.  
  457. resolution. This can be used as a compact parameter file.]
  458.  
  459.  
  460. algorithm-choice-block-marker
  461. string   1       Algorithm type: 1pass, ..., npass (for reasonably large =
  462. n),
  463. tesseral, guessingn (n is number of passes, 1
  464.                  is same as using 1pass), boundary, synchronous, diffusio=
  465. n.
  466. Default: guessing5.
  467. real     1       Tolerance for determining how similar pixels are for pur=
  468. poses
  469. of tesseral and b-trace and s-guess. 0 means
  470.                  must be identical. Default: 0.
  471. periodicity  real      Periodicity checking sensitivity. Orbits that repe=
  472. at to
  473. within periodicity/mag are a cycle
  474.                        detection. The factor of mag adjust the sensitivit=
  475. y
  476. automatically for deeper magnification.
  477.                        Default: 1x10^-7, or is there a less conservative =
  478. value
  479. that gives good results? Better yet, depends
  480.                        on formula.
  481.  
  482. [Now details of algorithm are specified.]
  483.  
  484.  
  485. image-dimension-block-marker
  486. ulong    1       width in pixels     Default: 1024
  487. ulong    1       height in pixels    Default: 768
  488.  
  489. [Image is imagined to be a square of side 1/mag centered on center, then
  490. truncated from top and bottom or from left and right
  491.  symmetrically to have the specified proportions.]
  492. [Specifies everything needed to batch-generate the data now.]
  493.  
  494.  
  495. basin-info-block-marker
  496. ushort   1                   # of basins
  497. real     2*number of basins  min and max for each basin
  498. complex or whatever    number of basins      Attractors, if there is one =
  499. at
  500. infinity it is attractor zero and the
  501.                                              coordinates are ignored, if
  502. fixed-point-trap is an attractor it is number 1 and
  503.                                              again the coordinates are
  504. ignored.
  505.  
  506. [Specifies "discovered" properties of the fractal.]
  507.  
  508. pixel-data-block-marker
  509. record   width*height    Generated image data
  510.                          type      qty.    description
  511.                          ushort    1       Basin number. Remember
  512. maxiter/periodicity is the last and infinity, if present,
  513.                                            the zeroth.
  514.                          ulong     1       Iterations. (Less than maxiter=
  515.  for
  516. periodicity-caught pixels!)
  517.                          ulong     1       Period. (In case periodicity
  518. checking caught the pixel. 0 if not found periodic.)
  519.                          real      1       Distance from origin or recip =
  520. of
  521. distance from finite attractor when caught in
  522.                                            a trap. (Recip of distance fro=
  523. m
  524. last point for fixed-point-trapping.)
  525.                          real      1       Angle to attractor (to origin =
  526. for
  527. infinity, to previous point for
  528.                                            fixed-point-trapping).
  529.                          real      1       Other data, special purpose, f=
  530. ixed
  531. by formula.
  532.                          real      2       Coordinates of terminal value.=
  533.  
  534.  
  535. ushort   1               Days
  536. byte     1               Hours
  537. byte     1               Minutes
  538. byte     1               Seconds
  539. real     1               Fraction of a second    Calculation time
  540. ulong    1               Pixels per second averaged
  541.  
  542.  
  543. [Specifies whole fractal without a coloring.]
  544.  
  545. coloring-data-block-marker
  546. record   any      Color-maps, applied sequentially to attractor basins.
  547.                   type    qty.        description
  548.                   record  1 or more   Color-map.
  549.                                       type    qty.     description
  550.                                       real    1        Between 0 and 1
  551. inclusive, specifies a value relative to the min-max
  552.                                                        range of the value=
  553.  in
  554. the basin.
  555.                                       byte    3        red, then green, t=
  556. hen
  557. blue, between 0 and 255 inclusive.
  558.                                       byte    1        0 =3D linear to ne=
  559. xt
  560. point 1 =3D quadratic 2 =3D cubic interpolation.
  561.                   Default: Something serviceable. Greyscale perhaps.
  562. 7-place-function    any      Functions applied (one per basin) to transfo=
  563. rm
  564. the raw data into a value.
  565.                   Default: iterations for all basins, except
  566. maxiter/periodicity, where it is constant equal to 0.
  567. 1-place-function    any      Functions applied (one per basin) to transfo=
  568. rm
  569. the output one step further, e.g. for a logmap.
  570.                              The min and max of the final value
  571.                              Default: the identity, i.e. the output equal=
  572. s the
  573. input.
  574.  
  575. [Here, the color map indexes between 0 and 1 must be nondecreasing. Succe=
  576. ssive
  577. identical values are allowed to control
  578.  splines which use neighbor points for interpolation. Quadratic uses prev=
  579. ious,
  580. current, and next to determine current to next, and
  581.  cubic uses previous and next-after-next for control points.]
  582. [The attracting basins are numbered from 0 up as follows: any
  583. formula-specified attractors in given order, then for Julias any
  584.  discovered attractors in order of encountering their basins left to righ=
  585. t,
  586. top to bottom. Lastly the color for max-iter.
  587.  Minima and maxima are determined from the raw data. So the scheme is
  588. well-defined.]
  589. [The foregoing specifies a fractal without regard to resolution or genera=
  590. ting
  591. algorithm.]
  592.  
  593.  
  594.  
  595.  
  596. This should be a reasonable first draft of a universal fractal data forma=
  597. t,
  598. which can have various levels of detail.
  599. One should augment it by using LZSS compression at least when storing a w=
  600. hole
  601. fractal's data. Each of the sections (fractal params,
  602. algorithm specification, color specification, raw data, etc.) should be
  603. optional and delimited. An omitted section (except the raw
  604. data and the "discovered" basin data) is regarded as all values their def=
  605. aults
  606. (as specified by the formula if necessary --
  607. maybe the formula default, Mandelbrot). An omitted parameter is assumed
  608. default. A named parameter not a standard name or
  609. specified in a formula (escape radius, convolution, fractal iteration etc=
  610. =2E)
  611. causes a warning message.
  612. As for computed data, if not specified it is computed.
  613.  
  614. The information stored per pixel is enough to use the saved data to quick=
  615. ly
  616. render using any of the following methods:
  617.        Solid color in a basin
  618.        Iterations
  619.        Atan or decomp (using the angle value)
  620.        Potential      (using iterations and the distance; should work aro=
  621. und
  622. finite attractors using the provided recip-of-distance!)
  623.        Real, imag, summ, etc.   (using the coordinates z_final)
  624.        Period         (using period value)
  625.        Distance estimator (using the 'special' field and a special formul=
  626. a to
  627. put the 'distance' information in that field)
  628.        And so forth...
  629.        =
  630.  
  631.        =
  632.  
  633.  
  634. ____________________________________________________________________
  635. Get free e-mail and a permanent address at http://www.netaddress.com/?N=3D=
  636. 1
  637.  
  638. Thanks for using Fractint, The Fractals and Fractint Discussion List
  639. Post Message:   fractint@lists.xmission.com
  640. Get Commands:   majordomo@lists.xmission.com "help"
  641. Administrator:  twegner@phoenix.net
  642. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  643.  
  644.  
  645. -------------------------------------------------------------------------------
  646.  
  647. From: Paul Derbyshire <pderbysh@usa.net>
  648. Subject: Re: [Re: (fractint) Fractal source code. ]
  649. Date: 01 Jun 1999 02:02:42 MDT
  650.  
  651. Phil McRevis <legalize@xmission.com> wrote:
  652.  
  653. >> Attached below are two source files, which are fairly short.
  654.  
  655. > Neither of which have anything to do with fractint.  Paul, please make
  656. > sure your posts are relevant before you post...
  657.  
  658.  
  659. This nastygram was utterly uncalled-for.
  660.  
  661. The list maintainers have made it clear time and again that anything
  662. fractal-related is welcome here, if it is civil of course and not a massi=
  663. ve
  664. binary attachment.
  665.  
  666. Witness a recent flurry of discussion about Flarium, another about Ultra
  667. Fractal, several on the merits of freeware versus $$$ware, some on
  668. copyrighting fractals, and so forth.
  669.  
  670. Moreover, the article I posted (and the two subsequent ones on related to=
  671. pics)
  672. may have everything to do with futurte directions in fractint development=
  673. ,
  674. especially as applied to truecolor, 32-bit development, and to future fil=
  675. e
  676. formats and truecolor coloring mechanisms.
  677.  
  678. Depending on just what the developers choose to do with the source codes =
  679. and
  680. the file format descriptions and suchlike.
  681.  
  682. The source code demonstrates ways to get passes=3Dg, b, t doing something=
  683.  useful
  684. with truecolor images based on iterations. They also provide a basic M-se=
  685. t
  686. inner loop for 32-bit calculation as well as a reasonable image-memory-st=
  687. orage
  688. paradigm for 32-bit development.
  689.  
  690. The file formats (which are to be taken as early drafts and not the Gospe=
  691. l)
  692. provide a format that can be independent of image formats (and copyrights=
  693. ) or
  694. worked into PNG; a format that can become some sort of standard across
  695. software and machine architectures; and a format that will allow signific=
  696. ant
  697. experimenting with and tuning of the (true-)colors of a fractal image wit=
  698. hout
  699. the need to regenerate the image.
  700.  
  701.  
  702. Now, I am not normally the paranoid type, but I have reason to suspect yo=
  703. u
  704. issued the above flame not because of my inoffensive posting's content (w=
  705. hich
  706. you could freely ignore if it did not iterest you) but instead because of=
  707.  its
  708. authorship. If this speculation is true, it does not reflect well upon yo=
  709. ur
  710. ethical and intellectual integrity that you would allow your publically-p=
  711. osted
  712. response to an article be influenced chiefly by its origin and not by its=
  713.  
  714. content. Content stands or falls on its own merits without reference to i=
  715. ts
  716. origin. Even if certain authors (I am not such a one) do produce a large
  717. proportion of content that falls on its face with lack of objective merit=
  718. , if
  719. that same author produces a stunning article of wisdom or meaningfulness =
  720. it is
  721. not automatically garbage regardless because of that author's past histor=
  722. y! It
  723. may well be particularly suspect until it is read but then it should stan=
  724. d or
  725. fall on its own merit once again.
  726.  
  727. I suspect I may know the reason behind this out-of-left-field attack, as =
  728. well,
  729. and if I am correct it is not entirely your fault. Several years ago, in =
  730. my
  731. general ethical and rational conducting of my affairs and my verbose supp=
  732. ort
  733. for others adopting a similar standard of conduct, I ran afoul of an elit=
  734. ist
  735. clique on the university campus whose agenda was threatened by my ideas. =
  736. One
  737. of them, an advanced psych student, appears to have concocted a kind of "=
  738. meme
  739. plague" capable of coercing people into developing an unfounded and irrat=
  740. ional
  741. antagonism towards anyone named "Paul Derbyshire" in such a subtle manner=
  742.  as
  743. to creep past a person's conscious safeguards against blind acceptance of=
  744.  
  745. propaganda and dogma and rumor. Unfortunately, this led to the clique
  746. developing a peculiar cult following of people who were, for all intents =
  747. and
  748. purposes, not themselves. This cult developed enough social clout to rend=
  749. er me
  750. a virtual pariah which I actually still am, despite the original clique's=
  751.  
  752. fragmenting and self-destructing as such ill-formed and evil organization=
  753. s
  754. tend to do. Although the "meme virus" tends to be rejected by the host's
  755. conscious reason after a few days to a few months, a lot of damage was do=
  756. ne
  757. and the "virus" seems to keep reappearing like the yearly flu.
  758.  
  759. As evidence that this "meme virus" is capable of what I claim it does, an=
  760. d is
  761. not a more ordinary kind of propagandizing, I bring to bear two facts.
  762. 1. The content of the propaganda or whatever is the viral carrier may
  763.    change and the underlying effect remains the same. It seems almost to
  764.    be transmitted subliminally without the use of specific words. As it
  765.    can transfer over the net in text-only media, which has been witnessed=
  766.  
  767.    to occur, it obviously lurks in hidden patterns or things like tone
  768.    and word choice as well as the occasional actual, explicit derogatory
  769.    remark against myself.
  770. 2. Persons whose character is demonstrably such that they simply do not
  771.    blindly believe any propaganda or rumor they hear are still affected.
  772.  
  773. I suspect you have perhaps become infected by some descended variant of i=
  774. t
  775. yourself. It appears to have spread quite far, carrying with it a vague,
  776. unfounded antagonism towards anyone the victim might later meet who happe=
  777. ns to
  778. carry my name. Don't bother consciously trying to purge it. As far as I h=
  779. ave
  780. gathered its behavior is totally subliminal and immune to conscious detec=
  781. tion
  782. or control, like a fog distorting one's perception of a single person. Mi=
  783. ght
  784. as well rail against a stroke-induced paralysis.
  785.  
  786. However, your occasional negative remarks are not truly your fault if my
  787. speculation here is true, and moreover, you will recover in weeks and pro=
  788. bably
  789. be immune afterwards for months or years.
  790.  
  791.  
  792.  
  793. Meanwhile, I shall be much more careful in future when (accidentally or
  794. deliberately) crossing swords with someone who has expertise in applied
  795. psychology and appears unethical enough in character to use it in such a
  796. malicious fashion.
  797.  
  798.  
  799. ____________________________________________________________________
  800. Get free e-mail and a permanent address at http://www.netaddress.com/?N=3D=
  801. 1
  802.  
  803. Thanks for using Fractint, The Fractals and Fractint Discussion List
  804. Post Message:   fractint@lists.xmission.com
  805. Get Commands:   majordomo@lists.xmission.com "help"
  806. Administrator:  twegner@phoenix.net
  807. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  808.  
  809.  
  810. -------------------------------------------------------------------------------
  811.  
  812. From: "Randall Britten" <randall@is.co.za>
  813. Subject: (fractint) Largest minibrot
  814. Date: 01 Jun 1999 11:39:52 +0200
  815.  
  816. Which is the largest Minibrot (midget) in the Mandelbrot?
  817.  
  818. This one?
  819.  
  820. LargestMinibrot    {
  821.   reset=1960 type=mandel center-mag=-1.76395/-0.000753836/34.36415
  822.   params=0/0
  823.   }
  824.  
  825.  
  826. -------------------------
  827. Randall Britten
  828.  
  829.  
  830.  
  831.  
  832. Thanks for using Fractint, The Fractals and Fractint Discussion List
  833. Post Message:   fractint@lists.xmission.com
  834. Get Commands:   majordomo@lists.xmission.com "help"
  835. Administrator:  twegner@phoenix.net
  836. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  837.  
  838.  
  839. -------------------------------------------------------------------------------
  840.  
  841. From:    "Fliguer, Miguel" <M_Fliguer@miniphone.com.ar>
  842. Subject: RE: [Re: (fractint) Fractal source code. ]
  843. Date: 01 Jun 1999 09:27:39 -0300 
  844.  
  845. Paul Derbyshire wrote :
  846.  
  847. >>>The list maintainers have made it clear time and again that anything
  848. >>>fractal-related is welcome here, if it is civil of course and not a
  849. massive
  850. >>>binary attachment.
  851.  
  852. >>> [massive text snipped]
  853.  
  854. Not necessarily binary. Paul, the first half of your response does comply
  855. with
  856. the above, but the rest... Three words : USE PRIVATE EMAIL
  857.  
  858. >>>tend to do. Although the "meme virus" tends to be rejected by the host's
  859. >>>conscious reason after a few days to a few months, a lot of damage was
  860. done
  861. >>>and the "virus" seems to keep reappearing like the yearly flu.
  862. >>> [snip]
  863.  
  864. And this ain't VIRUS-L, either ;-)
  865.  
  866. Regards,
  867. Miguel Fliguer
  868. Buenos Aires, Argentina
  869.  
  870. P.S.: Back to fractint, you once mentioned the 'n' command to get the
  871. complex 
  872. plane coordinates. I can't find it on my v19.6 copy. Is this a v20 feature ?
  873. Thanks in advance.
  874.  
  875. Thanks for using Fractint, The Fractals and Fractint Discussion List
  876. Post Message:   fractint@lists.xmission.com
  877. Get Commands:   majordomo@lists.xmission.com "help"
  878. Administrator:  twegner@phoenix.net
  879. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  880.  
  881.  
  882. -------------------------------------------------------------------------------
  883.  
  884. From: Phil McRevis <legalize@xmission.com>
  885. Subject: Re: [Re: (fractint) Fractal source code. ] 
  886. Date: 01 Jun 1999 11:20:08 -0600
  887.  
  888. The list's charter has been revised since the last time I looked at it,
  889. and indeed is broader than just discussion of fractint.  Since I was
  890. the one who had the list created on XMission for Tim, I probably joined
  891. the list before Tim even had a chance to write the existing charter;
  892. mea culpa.
  893. --
  894. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  895.     ``Ain't it funny that they all fire the pistol,     
  896.       at the wrong end of the race?''--PDBT     
  897. legalize@xmission.com    <http://www.eden.com/~thewho>
  898.  
  899. Thanks for using Fractint, The Fractals and Fractint Discussion List
  900. Post Message:   fractint@lists.xmission.com
  901. Get Commands:   majordomo@lists.xmission.com "help"
  902. Administrator:  twegner@phoenix.net
  903. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  904.  
  905.  
  906. -------------------------------------------------------------------------------
  907.  
  908. From: "Randall Britten" <randall@is.co.za>
  909. Subject: RE: (fractint) Re: 1/f scaling noise
  910. Date: 01 Jun 1999 23:01:18 +0200
  911.  
  912. I tried to answer your question, but in doing further reading, I have
  913. realised that I understand it less than I thought.
  914.  
  915. I posted the following message on the sci.fractals newsgroup, I will let you
  916. know if there is a decent reply:
  917.  
  918. <QUOTE>
  919. What is fractal noise? What is an example of an algorithm that acurately
  920. generates such signals?
  921. How does one generate a signal such that its fractal dimension is a
  922. predetermined value (e.g. 1.3)?
  923. I understand that if the fourier transform of a signal is 1/f^n then the
  924. signal "scales" i.e. the fourier transform of the signal "played" faster or
  925. slower has the same 1/f^n FT, except that it is "louder/softer".
  926. But is the only type of fractal signal one that has an FT of 1/f^n? If so,
  927. do all signals with 1/f FT have the same fractal dimension?
  928. </QUOTE>
  929.  
  930. There is a Freeware fractal music program at the following URL:
  931. http://www.geocities.com/SiliconValley/Haven/4386/
  932.  
  933. It has a page describing algorithms, and one of them is a formula for
  934. generating an approximate 1/f sequence.
  935. http://www.geocities.com/SiliconValley/Haven/4386/algorith.html
  936.  
  937. I know that is not the complete answer you are looking for, but I hope that
  938. it helps.
  939.  
  940. -------------------------
  941. Randall Britten
  942.  
  943.  
  944.  
  945.  
  946. -----Original Message-----
  947. [mailto:owner-fractint@lists.xmission.com] On Behalf Of Barry N Merenoff
  948. Sent:    Thursday 27 May 1999 15:10
  949.  
  950. A while ago I sent in two questions about 1/f scaling noise. Does anybody
  951. have answers?
  952.  
  953. Thanks for using Fractint, The Fractals and Fractint Discussion List
  954. Post Message:   fractint@lists.xmission.com
  955. Get Commands:   majordomo@lists.xmission.com "help"
  956. Administrator:  twegner@phoenix.net
  957. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  958.  
  959.  
  960. Thanks for using Fractint, The Fractals and Fractint Discussion List
  961. Post Message:   fractint@lists.xmission.com
  962. Get Commands:   majordomo@lists.xmission.com "help"
  963. Administrator:  twegner@phoenix.net
  964. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  965.  
  966.  
  967. -------------------------------------------------------------------------------
  968.  
  969. From: "Tim Wegner" <twegner@phoenix.net>
  970. Subject: Re: [Re: (fractint) Fractal source code. ] 
  971. Date: 01 Jun 1999 17:56:49 -0600
  972.  
  973. Let me clarify what is and is not on topic.
  974.  
  975.  
  976. Paul's original post that started this thread was fine. The topic is 
  977. fractint and fractals, and I don't require that all posts be fractint-
  978. related. Rich (a.k.a Phil) made an innocent mistake in this regard, 
  979. which he has acknowledged.
  980.  
  981.  
  982. I do feel that we don't want a lot of source code here, because it is 
  983. probably of limited interest, but at this point code is not off topic, 
  984. so Paul's posting was acceptable. 
  985.  
  986.  
  987. There is a fractint developer's list (fractdev) that is better for source 
  988. code posting or implementation discussions. This is a pretty quiet 
  989. list usually. I haven't promoted it much because I imagined 
  990. originally it would be for serious fractint developers, but enough 
  991. people have discovered this list I see no reason to keep it a poorly-
  992. kept secret. 
  993.  
  994.  
  995. Paul's response to Rich about conspiricies, viruses, etc. was way 
  996. off topic. Everyone, PLEASE spare the list that kind of thing. If you 
  997. have to vent, do so via private email.
  998.  
  999.  
  1000. Tim Wegner
  1001.  
  1002.  
  1003.  
  1004.  
  1005. <nofill>
  1006.  
  1007. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1008. Post Message:   fractint@lists.xmission.com
  1009. Get Commands:   majordomo@lists.xmission.com "help"
  1010. Administrator:  twegner@phoenix.net
  1011. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1012.  
  1013.  
  1014. -------------------------------------------------------------------------------
  1015.  
  1016. From: Benno.Schmid@gmx.net
  1017. Subject: Re: (fractint) Largest minibrot
  1018. Date: 02 Jun 1999 01:01:52 +0200
  1019.  
  1020. At 11:39 01.06.99 +0200, Randall Britten wrote:
  1021. >Which is the largest Minibrot (midget) in the Mandelbrot?
  1022. >
  1023. >This one?
  1024. >
  1025. >LargestMinibrot    {
  1026. >  reset=1960 type=mandel center-mag=-1.76395/-0.000753836/34.36415
  1027. >  params=0/0
  1028. >  }
  1029. >
  1030. Sure. And it has the lowest period, too.
  1031.  
  1032. Speaking of midgets: Jay, how did you get the coordinates for your midget
  1033. and Misiuriewicz par files? I tried to calculate the roots with Newton's
  1034. method, but found them only up to period 4 without errors (in Fractint and
  1035. an own program). But for your p23 midgets, the polynomial would be of
  1036. 4194303th order!
  1037.  
  1038.  
  1039. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1040. Post Message:   fractint@lists.xmission.com
  1041. Get Commands:   majordomo@lists.xmission.com "help"
  1042. Administrator:  twegner@phoenix.net
  1043. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1044.  
  1045.  
  1046. -------------------------------------------------------------------------------
  1047.  
  1048. From: Thore Berntsen <berntsen@vbdas.no>
  1049. Subject: RE: [Re: (fractint) Fractal source code. ] 
  1050. Date: 02 Jun 1999 08:46:23 +0200 
  1051.  
  1052. Hi Tim.
  1053.  
  1054. The developers list seems interesting. Can anyone join, and if yes how?
  1055.  
  1056. Thore Berntsen
  1057. Norway
  1058.  
  1059.  
  1060.     -----Original Message-----
  1061.     From:    Tim Wegner [SMTP:twegner@phoenix.net]
  1062.     Sent:    2. juni 1999 01:57
  1063.     To:    fractint@lists.xmission.com
  1064.     Subject:    Re: [Re: (fractint) Fractal source code. ] 
  1065.  
  1066.     Let me clarify what is and is not on topic. 
  1067.  
  1068.     Paul's original post that started this thread was fine. The
  1069. topic is  fractint and fractals, and I don't require that all posts be
  1070. fractint- related. Rich (a.k.a Phil) made an innocent mistake in this
  1071. regard,  which he has acknowledged. 
  1072.  
  1073.     I do feel that we don't want a lot of source code here, because
  1074. it is  probably of limited interest, but at this point code is not off
  1075. topic,  so Paul's posting was acceptable.  
  1076.  
  1077.     There is a fractint developer's list (fractdev) that is better
  1078. for source  code posting or implementation discussions. This is a pretty
  1079. quiet  list usually. I haven't promoted it much because I imagined
  1080. originally it would be for serious fractint developers, but enough
  1081. people have discovered this list I see no reason to keep it a poorly-
  1082. kept secret.  
  1083.  
  1084.     Paul's response to Rich about conspiricies, viruses, etc. was
  1085. way  off topic. Everyone, PLEASE spare the list that kind of thing. If
  1086. you  have to vent, do so via private email. 
  1087.  
  1088.     Tim Wegner 
  1089.  
  1090.  
  1091.  
  1092.  
  1093.  
  1094.     --------------------------------------------------------------
  1095.     Thanks for using Fractint, The Fractals and Fractint Discussion
  1096. List
  1097.     Post Message:   fractint@lists.xmission.com
  1098.     Get Commands:   majordomo@lists.xmission.com "help"
  1099.     Administrator:  twegner@phoenix.net
  1100.     Unsubscribe:    majordomo@lists.xmission.com "unsubscribe
  1101. fractint"
  1102.  
  1103. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1104. Post Message:   fractint@lists.xmission.com
  1105. Get Commands:   majordomo@lists.xmission.com "help"
  1106. Administrator:  twegner@phoenix.net
  1107. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1108.  
  1109.  
  1110. -------------------------------------------------------------------------------
  1111.  
  1112. From: Barry N Merenoff <110144.2274@compuserve.com>
  1113. Subject: (fractint) Re: 1/f Scaling Noise
  1114. Date: 02 Jun 1999 04:56:03 -0400
  1115.  
  1116. Thank you, Randall Britten!
  1117.  
  1118. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1119. Post Message:   fractint@lists.xmission.com
  1120. Get Commands:   majordomo@lists.xmission.com "help"
  1121. Administrator:  twegner@phoenix.net
  1122. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1123.  
  1124.  
  1125. -------------------------------------------------------------------------------
  1126.  
  1127. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  1128. Subject: (fractint) Some pars
  1129. Date: 03 Jun 1999 03:27:27 +1200
  1130.  
  1131. The consequenes of my most recent bit of dickering...
  1132.  
  1133. Gothic             { ; Colours by Sylvie Gallet
  1134.   reset=1960 type=formula formulafile=fractint.frm
  1135.   formulaname=SimplePendulumG function=cotan passes=b
  1136.   center-mag=0/0/0.6666667 params=0.5/0/0/0 float=y maxiter=1023
  1137.   inside=255 outside=atan periodicity=0
  1138.   colors=uuteS5<29>O31N20O41N20<10>Q72R82R82S93TA3<14>gQ5hR5iS4<3>mW3nX2nX\
  1139.   2nY2<6>rc0rc0rb0<4>pZ1pY1oX2nX2<11>aL4`K4ZI3<2>UG3SG4QF4OF5ME5<2>GC6DB7D\
  1140.   B7<74>ssrttsttstts<11>vvtwwuwwt<9>wwgwwfwvevud<4>tqZtpYsoXsnVrmUrmT<22>e\
  1141.   S5uus cyclerange=1/254
  1142.   }
  1143.  
  1144. Faberge            { ; Colours by Linda Allison
  1145.   reset=1960 type=formula formulafile=fractint.frm
  1146.   formulaname=SimplePendulumG function=cotan passes=b
  1147.   center-mag=0.250195/1.38778e-016/5.72659/1/90 params=0.5/0/0/0
  1148.   float=y maxiter=1023 inside=255 outside=atan periodicity=0
  1149.   colors=0003eZ<16>2DC2BA2BA<12>111000000000<14>000500500<26>iB3<8>xeKziMy\
  1150.   fL<7>kF5iB3fA3<8>911500000<12>000000011021<12>3CA3CA3B9<15>000000021<4>3\
  1151.   CA4FC5JF<10>Fte<14>155012000<15>4zn<2>4pe4lb4h_3dX3`U<8>022<13>4zp<11>3f\
  1152.   `000 cyclerange=1/254
  1153.   }
  1154.  
  1155. PhosphorescentTide {
  1156.   reset=1960 type=formula formulafile=fractint.frm
  1157.   formulaname=simplependulumg function=cosxx
  1158.   center-mag=-5.55112e-016/-1.11022e-016/0.6666667/2.2889
  1159.   params=0.5/0/0/0 float=y maxiter=1023 inside=255 outside=atan
  1160.   passes=b
  1161.   colors=000298<9>11100000000000000000900J00000K009000<102>000000276<7>011\
  1162.   011000000021<4>3CA4FC5JF<9>EqcFteEqc<14>012000<15>4zn<2>4pe4lb4h_3dX3`U<\
  1163.   8>022<13>4zp<14>3bW3`V3ZU3XS3WR<10>2DC2BA2BA2A9299000
  1164.   cyclerange=1/254
  1165.   }
  1166.  
  1167. I_Dunno_What_it_is { ; Um... a cybernetic Orang-utan?
  1168.                      ; Colours by Kerry Mitchell
  1169.   reset=1960 type=formula formulafile=fractint.frm
  1170.   formulaname=simplependulumg function=cosxx
  1171.   center-mag=-0.490438/1.15415/9.226443/0.9515/34.438/-32.851
  1172.   params=1.5/0/0/0 float=y maxiter=1023 inside=255 outside=atan
  1173.   periodicity=0
  1174.   colors=222642A62A86EA6E82IA2MC2ME6IC6IEAIGEMIEMGAQIAQKEUMEUKAUI6QG6QE2<2\
  1175.   >aK2aM6YK6YMAYOEaQEaOAeQAeSEiUEiSAiQ6eO6eM2iO2mQ2mS6qU6qS2uU2yW2yY6uW6uY\
  1176.   Ay_AyaEu_EqYEqWAmUA<2>m_MqaMq_IuaIycIyeMucMueQygQyiUugUqeUqcQmaQmcUiaUe_\
  1177.   UeYQi_QiYMiWIeUIeWMaUMaSIYQIYSMYUQaWQaYUYWUYYYa_YaaaY_aYaeYciaeiaceeeeeg\
  1178.   iiiiigeieaecaeaYicYmeYmgaqiaqgYuiYykYymaukaumeyoeyqiuoiqmiqkemie<2>moqqq\
  1179.   qqomuqmysmyuqusquuuywuyyyuwyquyqsumqumsyiqyeoyemuiouimqikmeimekqaiqagmYe\
  1180.   mYgqYiuakuamy<2>QgyQeuUguUeqUcmQamQcqMaqM_mIYmI_qIauMcuMeyIcyEayE_uAYuA_\
  1181.   y6Yy2Wy2Uu6Wu6Uq2Sq2Qm6SmAUmAWqEYq<2>ESeAQeASi6Qi2Oi2Me6Oe6Ma2Ka2IY6KYAM\
  1182.   YAOaEQaEOYIQYMSYMUaISaIUeIWiMYiMWeQYeQ_iUaiU_eUYaQWaQUYUWYUUUQSUQQQUSQUQ\
  1183.   MUOIQMIQOMMMMMKIIIIIKMIMQMOQMQUIOUEMUEKQAIQAKU6IU2GU2EQ6GQ6EM2CM2AI6CIAE\
  1184.   IAGMEIM<2>ECAAAAACE6AE28E26A68A666246 cyclerange=1/254
  1185.   }
  1186.  
  1187. Maelstrom          { ; Story by Edgar Allen Poe
  1188.   reset=1960 type=formula formulafile=fractint.frm
  1189.   formulaname=simplependulumg function=cotanh
  1190.   center-mag=-0.56294/0.762463/4.219409 params=1.5/0/0/0 float=y
  1191.   maxiter=1023 inside=255 outside=atan periodicity=0
  1192.   colors=000<24>000000222222<2>22822A44C44E44G44I66K66N66P66Q66T88V88X88Z8\
  1193.   8X88V88VAATAAQAAQCCPCCN<2>CCNCCNEENEENEENGGNGGNGGPIIPIIPIIPKKP<2>KKPNNPN\
  1194.   NQNNQNNQPPQPPQPPT<2>QQTQQTTTV<3>TTVTTVTTXTTXVVZVVZVVZVV`XX`XXcXXcXXcZZdZ\
  1195.   ZdZZgZZg``g``i``i``kcckccmccmccmddoddoddqddqggqggsggsgguiiuiiuiiwiiwkkyk\
  1196.   kykkzkkzmmzmmzmmzmmzoozoozoozoozqqzqqzqqzqqzsszsszsszsszuuzuuzuuzuuzwwzw\
  1197.   wzwwzwwzyyz<27>zzzzzzzyzyyzywzwuzuuzsszqqzoozooymmwkkuikugisggqddocdo`cm\
  1198.   Z`kZ`iXZgVXgTVdTVcQT`PQZNQZKPXKNVIKTGKTEIQCGPCGNAEK8CK6AI4AG48E26E06C04A\
  1199.   028028000<32>000 cyclerange=1/254
  1200.   }
  1201.  
  1202. frm:SimplePendulumG{
  1203. bailout=real(p2)+4
  1204. dt=real(p1)
  1205. z=pixel
  1206. pi2=Pi+Pi:
  1207. x=real(z)
  1208. y=imag(z)
  1209. z=x+y*dt+flip(y+fn1(pi2*x)*dt)
  1210. |z|<=bailout}
  1211.  
  1212.  
  1213.  
  1214. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1215. Post Message:   fractint@lists.xmission.com
  1216. Get Commands:   majordomo@lists.xmission.com "help"
  1217. Administrator:  twegner@phoenix.net
  1218. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1219.  
  1220.  
  1221. -------------------------------------------------------------------------------
  1222.  
  1223. From: JoWeber <JoWeber@compuserve.com>
  1224. Subject: (fractint) updated site
  1225. Date: 02 Jun 1999 19:21:09 -0400
  1226.  
  1227. Hi All,
  1228.  
  1229. today I added a new section to my site called
  1230. "Friends and their work".
  1231. You can dl the latest work of Bob Carr ( 43Hcarr - 43Kcarr ) and take
  1232. a view of the images via thumbnails.
  1233. You can also dl the latest work of Lee Skinner.
  1234. --Jo--
  1235.  
  1236. http://www.joweber.de
  1237.  
  1238. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1239. Post Message:   fractint@lists.xmission.com
  1240. Get Commands:   majordomo@lists.xmission.com "help"
  1241. Administrator:  twegner@phoenix.net
  1242. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1243.  
  1244.  
  1245. -------------------------------------------------------------------------------
  1246.  
  1247. From: "Earl Simpson" <esimpn@intcomm.net>
  1248. Subject: Re: (fractint) updated site
  1249. Date: 02 Jun 1999 23:04:17 -0500
  1250.  
  1251. Jo,
  1252.  
  1253. Too often we take too much for granted, and never pause to say "Thank You"
  1254. to people that make a part of life more enjoyable.  Such is the case on my
  1255. part with respect to your outstanding effort and great website.
  1256.  
  1257. I have throughly enjoyed downloading and reproducing the images from the
  1258. pars which other great folks have allowed you to post, as well as your own.
  1259.  
  1260. Again THANK YOU, and thanks to the people that allow you to post their pars,
  1261. for all that you do for the rest of us.
  1262.  
  1263. Earl Simpson
  1264.  
  1265.  
  1266.  
  1267.  
  1268. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1269. Post Message:   fractint@lists.xmission.com
  1270. Get Commands:   majordomo@lists.xmission.com "help"
  1271. Administrator:  twegner@phoenix.net
  1272. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1273.  
  1274.  
  1275. -------------------------------------------------------------------------------
  1276.  
  1277. From: JoWeber <JoWeber@compuserve.com>
  1278. Subject: Re: (fractint) updated site
  1279. Date: 03 Jun 1999 02:23:30 -0400
  1280.  
  1281. Hi Earl,
  1282.  
  1283. many thanks for your very kind words.
  1284.  
  1285. --Jo--
  1286.  
  1287. http://www.joweber.de
  1288. Hagen (Germany)
  1289.  
  1290. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1291. Post Message:   fractint@lists.xmission.com
  1292. Get Commands:   majordomo@lists.xmission.com "help"
  1293. Administrator:  twegner@phoenix.net
  1294. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1295.  
  1296.  
  1297. -------------------------------------------------------------------------------
  1298.  
  1299. From: davides <davides@pipeline.com>
  1300. Subject: Re: (fractint) Some pars
  1301. Date: 03 Jun 1999 13:06:18 -0400
  1302.  
  1303. At 03:27 AM 6/3/1999 +1200, you wrote:
  1304. >The consequenes of my most recent bit of dickering...
  1305.  
  1306. I especially liked: 
  1307.  
  1308. Faberge            { ; Colours by Linda Allison
  1309.   reset=1960 type=formula formulafile=fractint.frm
  1310.   formulaname=SimplePendulumG function=cotan passes=b
  1311.  
  1312. Cheers,
  1313.  
  1314. davides@pipeline.com
  1315. ds30@umail.umd.edu
  1316. Back up my hard drive?
  1317. How do I put it in reverse?
  1318.  
  1319. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1320. Post Message:   fractint@lists.xmission.com
  1321. Get Commands:   majordomo@lists.xmission.com "help"
  1322. Administrator:  twegner@phoenix.net
  1323. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1324.  
  1325.  
  1326. -------------------------------------------------------------------------------
  1327.  
  1328. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  1329. Subject: Re: (fractint) Some pars
  1330. Date: 04 Jun 1999 09:38:14 +1200
  1331.  
  1332. At 13:06 03/06/99 -0400, davides wrote:
  1333. >
  1334. >I especially liked: 
  1335. >
  1336. >Faberge            { ; Colours by Linda Allison
  1337. >  reset=1960 type=formula formulafile=fractint.frm
  1338. >  formulaname=SimplePendulumG function=cotan passes=b
  1339. >
  1340. >Cheers,
  1341. >
  1342. You're welcome.
  1343.  
  1344. Morgan L. Owens
  1345.  
  1346.  
  1347.  
  1348.  
  1349. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1350. Post Message:   fractint@lists.xmission.com
  1351. Get Commands:   majordomo@lists.xmission.com "help"
  1352. Administrator:  twegner@phoenix.net
  1353. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1354.  
  1355.  
  1356. -------------------------------------------------------------------------------
  1357.  
  1358. From: Paul Derbyshire <pderbysh@usa.net>
  1359. Subject: (fractint) Worm warning -- this is NOT a HOAX.
  1360. Date: 05 Jun 1999 08:45:43 MDT
  1361.  
  1362.  
  1363. To everyone on all of these mailing lists. DO NOT open unsolicited or
  1364. otherwise suspicious attachments. Not Word files or executables, or Excel=
  1365.  
  1366. files. If you must, scan them first with antivirus software. Update your
  1367. antivirus software so it recognizes "Pretty Park".
  1368.  
  1369.  
  1370. This one spreads much like the Happy99 worm or Melissa. Worse, once insta=
  1371. lled
  1372. it allows unauthorized access to one's computer like Netbus or Back Orifi=
  1373. ce,
  1374. by talking to the virus author on IRC.
  1375.  
  1376. I felt it prudent to warn you guys, since two of the lists got dinged wit=
  1377. h
  1378. Happy99...
  1379.  
  1380. Read about it from the source.
  1381.  
  1382. http://www.msnbc.com/news/276805.asp
  1383.  
  1384.  
  1385. ____________________________________________________________________
  1386. Get free e-mail and a permanent address at http://www.netaddress.com/?N=3D=
  1387. 1
  1388.  
  1389. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1390. Post Message:   fractint@lists.xmission.com
  1391. Get Commands:   majordomo@lists.xmission.com "help"
  1392. Administrator:  twegner@phoenix.net
  1393. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1394.  
  1395.  
  1396. -------------------------------------------------------------------------------
  1397.  
  1398. From: Paul Derbyshire <pderbysh@usa.net>
  1399. Subject: Re: [Re: (fractint) Worm warning -- this is NOT a HOAX.]
  1400. Date: 05 Jun 1999 10:51:25 MDT
  1401.  
  1402. "Tim Wegner" <twegner@phoenix.net> wrote:
  1403.  
  1404. > OFF TOPIC!!!!!!
  1405.  
  1406. I don't agree. I think it prudent to warn the list, after seeing the list=
  1407.  get
  1408. dinged with Happy99 a few months ago. We really don't want a repeat of th=
  1409. at,
  1410. especially since this new worm has the capacity to be far more dangerous =
  1411. than
  1412. Happy99.
  1413.  
  1414. (What the devil is the matter with these mail filters?)
  1415.  
  1416.  
  1417. ____________________________________________________________________
  1418. Get free e-mail and a permanent address at http://www.netaddress.com/?N=3D=
  1419. 1
  1420.  
  1421. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1422. Post Message:   fractint@lists.xmission.com
  1423. Get Commands:   majordomo@lists.xmission.com "help"
  1424. Administrator:  twegner@phoenix.net
  1425. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1426.  
  1427.  
  1428. -------------------------------------------------------------------------------
  1429.  
  1430. From: Phil McRevis <legalize@xmission.com>
  1431. Subject: Re: [Re: (fractint) Worm warning -- this is NOT a HOAX.] 
  1432. Date: 05 Jun 1999 11:55:36 -0600
  1433.  
  1434.  
  1435. In article <19990605165125.3115.qmail@nwcst286.netaddress.usa.net>,
  1436.     Paul Derbyshire <pderbysh@usa.net>  writes:
  1437.  
  1438. > I think it prudent to warn the list [...]
  1439.  
  1440. LOL.  If I had a nickel for every time I was "warned" of impending
  1441. virus doom I'd be a millioinaire.  The warning here assumes things
  1442. like: everyone is running a windows PC, everyone opens executable
  1443. attachments and runs them automatically, etc., etc.  Yes, viruses pose
  1444. real dangers if you don't treat internet mail with attachments as
  1445. suspect.  But pulling a chicken little every time a new virus comes
  1446. out doesn't help either.  Viruses come and go and it is the
  1447. responsibility of each user to pay attention to what they are doing or
  1448. reap the potentially nasty consequences.  If you play with fire, you
  1449. might get burned.  Caveat emptor, etc., etc.
  1450. --
  1451. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  1452.     ``Ain't it funny that they all fire the pistol,     
  1453.       at the wrong end of the race?''--PDBT     
  1454. legalize@xmission.com    <http://www.eden.com/~thewho>
  1455.  
  1456. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1457. Post Message:   fractint@lists.xmission.com
  1458. Get Commands:   majordomo@lists.xmission.com "help"
  1459. Administrator:  twegner@phoenix.net
  1460. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1461.  
  1462.  
  1463. -------------------------------------------------------------------------------
  1464.  
  1465. From: John Wilson <johnw1@attcanada.net>
  1466. Subject: (fractint) Off topic????
  1467. Date: 05 Jun 1999 11:09:50 -0700
  1468.  
  1469. Saturday, June 05, 1999, 3:51:25 AM, Paul wrote:
  1470.  
  1471. PD> "Tim Wegner" <twegner@phoenix.net> wrote:
  1472.  
  1473. >> OFF TOPIC!!!!!!
  1474.  
  1475. I have suspected, for a couple of days, that I am not receiving *all*
  1476. the mail I should be getting...I certainly didn't see one from Tim.
  1477. Both Philofractal and Fractint seem to have died to one or two
  1478. messages per diem.   This is correct?
  1479.  
  1480. PD> (What the devil is the matter with these mail filters?)
  1481.  
  1482. Is someone else having the same problem?
  1483.  
  1484. John W.                            mailto:johnw1@attcanada.net
  1485.  
  1486.  
  1487.  
  1488. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1489. Post Message:   fractint@lists.xmission.com
  1490. Get Commands:   majordomo@lists.xmission.com "help"
  1491. Administrator:  twegner@phoenix.net
  1492. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1493.  
  1494.  
  1495. -------------------------------------------------------------------------------
  1496.  
  1497. From: Paul Derbyshire <pderbysh@usa.net>
  1498. Subject: Re: [Re: [Re: (fractint) Worm warning -- this is NOT a HOAX.] ]
  1499. Date: 05 Jun 1999 19:40:35 MDT
  1500.  
  1501. Phil McRevis <legalize@xmission.com> wrote:
  1502.  
  1503. > Viruses come and go and it is the responsibility of each user to pay
  1504. > attention to what they are doing or reap the potentially nasty
  1505. > consequences.  If you play with fire, you might get burned.  Caveat
  1506. > emptor, etc., etc.
  1507.  
  1508. This thing can spread via mailing lists very easily. And appear to come f=
  1509. rom a
  1510. trustworthy person on a trustworthy mailing list. And therefore it is rat=
  1511. her
  1512. insidious. Remember the incident with Happy99 on here? We don't want a
  1513. repeat... Nor do we want to lambast someone for posting a binary attachme=
  1514. nt in
  1515. the event they unwittingly got infected and did *not* in fact choose to p=
  1516. ost
  1517. an attachment. The guy who got zonked with Happy99 on here got zonked aga=
  1518. in
  1519. with some flames for his involuntary posting of it on the list shortly
  1520. thereafter.
  1521.  
  1522. It's best that none of us, least of all the list administrator, operate i=
  1523. n an
  1524. information vacuum...
  1525.  
  1526.  
  1527. ____________________________________________________________________
  1528. Get free e-mail and a permanent address at http://www.netaddress.com/?N=3D=
  1529. 1
  1530.  
  1531. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1532. Post Message:   fractint@lists.xmission.com
  1533. Get Commands:   majordomo@lists.xmission.com "help"
  1534. Administrator:  twegner@phoenix.net
  1535. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1536.  
  1537.  
  1538. -------------------------------------------------------------------------------
  1539.  
  1540. From: Paul Derbyshire <pderbysh@usa.net>
  1541. Subject: (fractint) Message lossage?
  1542. Date: 05 Jun 1999 19:47:31 MDT
  1543.  
  1544. John Wilson <johnw1@attcanada.net> wrote:
  1545. Saturday, June 05, 1999, 3:51:25 AM, Paul wrote:
  1546.  
  1547. > PD> "Tim Wegner" <twegner@phoenix.net> wrote:
  1548.  
  1549. >>> OFF TOPIC!!!!!!
  1550.  
  1551. > I have suspected, for a couple of days, that I am not receiving *all*
  1552. > the mail I should be getting...I certainly didn't see one from Tim.
  1553. > Both Philofractal and Fractint seem to have died to one or two
  1554. > messages per diem.   This is correct?
  1555.  
  1556. > PD> (What the devil is the matter with these mail filters?)
  1557.  
  1558. > Is someone else having the same problem?
  1559.  
  1560. It's starting to look that way. Tim, any idea what's up?
  1561.  
  1562.  
  1563. ____________________________________________________________________
  1564. Get free e-mail and a permanent address at http://www.netaddress.com/?N=3D=
  1565. 1
  1566.  
  1567. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1568. Post Message:   fractint@lists.xmission.com
  1569. Get Commands:   majordomo@lists.xmission.com "help"
  1570. Administrator:  twegner@phoenix.net
  1571. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1572.  
  1573.  
  1574. -------------------------------------------------------------------------------
  1575.  
  1576. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  1577. Subject: Re: (fractint) Message lossage?
  1578. Date: 06 Jun 1999 14:34:03 +1200
  1579.  
  1580. At 19:47 05/06/99 MDT, you wrote:
  1581. >John Wilson <johnw1@attcanada.net> wrote:
  1582. >Saturday, June 05, 1999, 3:51:25 AM, Paul wrote:
  1583. >
  1584. >> PD> "Tim Wegner" <twegner@phoenix.net> wrote:
  1585. >
  1586. >>>> OFF TOPIC!!!!!!
  1587. >
  1588. >> I have suspected, for a couple of days, that I am not receiving *all*
  1589. >> the mail I should be getting...I certainly didn't see one from Tim.
  1590. >> Both Philofractal and Fractint seem to have died to one or two
  1591. >> messages per diem.   This is correct?
  1592. >
  1593. >> PD> (What the devil is the matter with these mail filters?)
  1594. >
  1595. >> Is someone else having the same problem?
  1596. >
  1597. >It's starting to look that way. Tim, any idea what's up?
  1598. >
  1599. Maybe messages are being lost to the "Virus Warning" virus 
  1600. :-)
  1601.  
  1602. But I also suspect I'm missing messages (I didn't receive Tim's _OFF TOPIC_
  1603. post either.)
  1604.  
  1605.  
  1606.  
  1607.  
  1608. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1609. Post Message:   fractint@lists.xmission.com
  1610. Get Commands:   majordomo@lists.xmission.com "help"
  1611. Administrator:  twegner@phoenix.net
  1612. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1613.  
  1614.  
  1615. -------------------------------------------------------------------------------
  1616.  
  1617. From: Phil McRevis <legalize@xmission.com>
  1618. Subject: (fractint) Re: missing messages
  1619. Date: 05 Jun 1999 21:35:55 -0600
  1620.  
  1621.  
  1622. In article <8465.990605@attcanada.net>,
  1623.     John Wilson <johnw1@attcanada.net>  writes:
  1624.  
  1625. > I have suspected, for a couple of days, that I am not receiving *all*
  1626. > the mail I should be getting...I certainly didn't see one from Tim.
  1627.  
  1628. That's because Tim sent it as email to Paul "Chicken Little"
  1629. Derbyshire, and Paul felt the need to respond to the list.  When the
  1630. administrator of a list sends you private email that suggests your
  1631. posts are off topic, you ought to step back and pause for a moment
  1632. before inflicting more messages on the subscriber base.
  1633.  
  1634. By the way, the fractint mailing list is archived in xmission, which
  1635. is why I know that the message in question was not sent to the list.
  1636. If one ever fears that messages are going to the list and not being
  1637. received in your emailbox, you can always double check the archives.
  1638.  
  1639. You can find the archives at
  1640. <ftp://ftp.xmission.com/pub/lists/fractint/archive/>
  1641. --
  1642. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  1643.     ``Ain't it funny that they all fire the pistol,     
  1644.       at the wrong end of the race?''--PDBT     
  1645. legalize@xmission.com    <http://www.eden.com/~thewho>
  1646.  
  1647. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1648. Post Message:   fractint@lists.xmission.com
  1649. Get Commands:   majordomo@lists.xmission.com "help"
  1650. Administrator:  twegner@phoenix.net
  1651. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1652.  
  1653.  
  1654. -------------------------------------------------------------------------------
  1655.  
  1656. From: Paul Derbyshire <pderbysh@usa.net>
  1657. Subject: Re: [(fractint) Re: missing messages]
  1658. Date: 05 Jun 1999 21:41:30 MDT
  1659.  
  1660. Phil McRevis <legalize@xmission.com> wrote:
  1661.  
  1662. > That's because Tim sent it as email to Paul "Chicken Little"
  1663. > Derbyshire, and Paul felt the need to respond to the list.
  1664.  
  1665. He did? I thought he sent it on the list. It had the list message identif=
  1666. ier
  1667. on it.
  1668.  
  1669. ____________________________________________________________________
  1670. Get free e-mail and a permanent address at http://www.netaddress.com/?N=3D=
  1671. 1
  1672.  
  1673. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1674. Post Message:   fractint@lists.xmission.com
  1675. Get Commands:   majordomo@lists.xmission.com "help"
  1676. Administrator:  twegner@phoenix.net
  1677. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1678.  
  1679.  
  1680. -------------------------------------------------------------------------------
  1681.  
  1682. From: Jncerra@aol.com
  1683. Subject: (fractint) Some pars
  1684. Date: 06 Jun 1999 00:04:06 EDT
  1685.  
  1686. These are some pars  of common fractal types that are zoomed 
  1687. and aspected in interesting ways:
  1688.  
  1689.  
  1690. lorentzoom         { ; lorentz good background                    John Cerra
  1691.   reset=1950 type=lorenz corners=-2.58/2.58/11.06322/16.22322
  1692.   params=0.02/5/15/1 float=y inside=bof60
  1693.   colors=00000e0e00eee00e0eeL0eeeLLLLLzLzLLzzzLLzLzzzLzzz
  1694.   }
  1695.  
  1696. lorentzoom2        { ; lorentz -      has perspective              John Cerra
  1697.   reset=1950 type=lorenz corners=-0.96/0.96/8.881402/15.90992
  1698.   params=0.02/5/15/1 float=y inside=bof60
  1699.   colors=00000e0e00eee00e0eeL0eeeLLLLLzLzLLzzzLLzLzzzLzzz
  1700.   }
  1701.  
  1702. kamweb             { ; zoomed kamtorus                              John Cerra
  1703.   reset=1950 type=kamtorus corners=-0.266/0.266/-0.29215442/0.29215442
  1704.   params=2/0.005/1.5/150 float=y inside=bof60
  1705.   colors=000g`inhv<2>DlLJqGdyiI6V<3>itRPE8VLKaTX
  1706.   }
  1707.  
  1708.         My thanks to the many "fractintonians" who have helped me 
  1709. get a grasp of this great program
  1710.  
  1711. JOhn J. Cerra
  1712. http://members.aol.com/jncerra/index.htm
  1713.  
  1714. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1715. Post Message:   fractint@lists.xmission.com
  1716. Get Commands:   majordomo@lists.xmission.com "help"
  1717. Administrator:  twegner@phoenix.net
  1718. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1719.  
  1720.  
  1721. -------------------------------------------------------------------------------
  1722.  
  1723. From: "Randall Britten" <randall@is.co.za>
  1724. Subject: (fractint) Animated gifs
  1725. Date: 09 Jun 1999 19:24:18 +0200
  1726.  
  1727. Did you know, Fractint can open animated gifs.  It seems to animate them
  1728. faster than web browsers do.
  1729.  
  1730. Fractal animations are really cool.  I will put up some requests on the
  1731. wishlist if they are not already there, things like "Fractal Filmer" allows
  1732. you to do, but better, allowing you to compose an actual animation, rather
  1733. than having to get hold of some external animation tool.
  1734.  
  1735. -------------------------
  1736. Randall Britten
  1737.  
  1738.  
  1739.  
  1740. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1741. Post Message:   fractint@lists.xmission.com
  1742. Get Commands:   majordomo@lists.xmission.com "help"
  1743. Administrator:  twegner@phoenix.net
  1744. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1745.  
  1746.  
  1747. -------------------------------------------------------------------------------
  1748.  
  1749. From: Mark Christenson <mchris@hooked.net>
  1750. Subject: Re: (fractint) Animated gifs
  1751. Date: 09 Jun 1999 18:15:57 -0700
  1752.  
  1753. At 07:24 PM 6/9/99 +0200, Randall Britten wrote:
  1754. >Did you know, Fractint can open animated gifs.  It seems to animate them
  1755. >faster than web browsers do.
  1756.  
  1757. Unfortunately, it doesn't repeat.  Interesting nonetheless.
  1758.  
  1759. >Fractal animations are really cool.  
  1760.  
  1761. For those who enjoy animations, I have an animated GIF (200k) 
  1762. of an affine transformation on my site at 
  1763.  
  1764. http://www.hooked.net/room9a.htm
  1765.  
  1766. Now that I think of it, that would be a really neat way to 
  1767. demonstrate the evolution of a fractal image... (hmmm) 
  1768. maybe later.
  1769.  
  1770.  
  1771. Aloha, Bud
  1772.  
  1773. Mark "Bud" Christenson
  1774. Webmaster/Artist, Bud's Fractal Pages 
  1775. http://www.hooked.net/~mchris/fractals.htm
  1776.  
  1777.  
  1778. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1779. Post Message:   fractint@lists.xmission.com
  1780. Get Commands:   majordomo@lists.xmission.com "help"
  1781. Administrator:  twegner@phoenix.net
  1782. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1783.  
  1784.  
  1785. -------------------------------------------------------------------------------
  1786.  
  1787. From: Mark Christenson <mchris@hooked.net>
  1788. Subject: Re: (fractint) Animated gifs - oops!
  1789. Date: 09 Jun 1999 18:19:33 -0700
  1790.  
  1791. Dammit, did it agin (URL)  >:-#
  1792.  
  1793. At 07:24 PM 6/9/99 +0200, Randall Britten wrote:
  1794. >Did you know, Fractint can open animated gifs.  It seems to animate them
  1795. >faster than web browsers do.
  1796.  
  1797. Unfortunately, it doesn't repeat.  Interesting nonetheless.
  1798.  
  1799. >Fractal animations are really cool.  
  1800.  
  1801. For those who enjoy animations, I have an animated GIF (200k) 
  1802. of an affine transformation on my site at 
  1803.  
  1804. >>> http://www.hooked.net/~mchris/room9a.htm <<<
  1805.  
  1806. Now that I think of it, that would be a really neat way to 
  1807. demonstrate the evolution of a fractal image... (hmmm) 
  1808. maybe later.
  1809.  
  1810.  
  1811. Aloha, Bud
  1812.  
  1813. Mark "Bud" Christenson
  1814. Webmaster/Artist, Bud's Fractal Pages 
  1815. http://www.hooked.net/~mchris/fractals.htm
  1816.  
  1817.  
  1818. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1819. Post Message:   fractint@lists.xmission.com
  1820. Get Commands:   majordomo@lists.xmission.com "help"
  1821. Administrator:  twegner@phoenix.net
  1822. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1823.  
  1824.  
  1825. -------------------------------------------------------------------------------
  1826.  
  1827. From: "Damien M. Jones" <dmj@fractalus.com>
  1828. Subject: (fractint) Contest Time
  1829. Date: 09 Jun 1999 21:41:44 -0500
  1830.  
  1831. Greetings folks,
  1832.  
  1833. I have accumulated a good number of thoughts on a contest this year. I'm
  1834. going to post them to the Fractal-Art list tomorrow evening, but I wanted
  1835. to give everyone a sort of "heads-up" for a couple of reasons:
  1836.  
  1837.  1. I'd like the discussion to stay pretty much in one place, and since
  1838.     the contest is for all fractal software (not just FractInt or Ultra
  1839.     Fractal) it seems the best place for that is the F-A list; and,
  1840.  
  1841.  2. Many people might not be subscribed to the F-A list (several unsubbed
  1842.     some time ago) and I didn't want to force them to go to the list
  1843.     archives and catch up on the discussion once we've started.
  1844.  
  1845. If you're not currently subscribed to the F-A list, you can subscribe by
  1846. sending a message with nothing but the word "subscribe" in the body of the
  1847. message to fractal-art-request@icd.com and that will do the trick.
  1848.  
  1849. I've started to build a rough contest web site for this year. You can sneak
  1850. a peek here:
  1851.  
  1852.     http://www.fractalus.com/contest99/
  1853.  
  1854. It's not linked from the main entrance page on my site because it's not
  1855. "ready" yet.
  1856.  
  1857. Damien M. Jones   \\
  1858. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  1859.                     \\  http://www.fractalus.com/
  1860.  
  1861. Please do not post my e-mail address on a web site or
  1862. in a newsgroup.  Thank you.
  1863.  
  1864. Thanks for using Fractint, The Fractals and Fractint Discussion List
  1865. Post Message:   fractint@lists.xmission.com
  1866. Get Commands:   majordomo@lists.xmission.com "help"
  1867. Administrator:  twegner@phoenix.net
  1868. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  1869.  
  1870.  
  1871. -------------------------------------------------------------------------------
  1872.  
  1873. From: Lee Skinner <LeeHSkinner@compuserve.com>
  1874. Subject: (fractint) 6 scenic pars
  1875. Date: 09 Jun 1999 23:48:55 -0400
  1876.  
  1877. Here are the original Fractint pars for the 6 images that Sylvie posted
  1878. today to the Ultra Fractal list.
  1879.  
  1880. frm:carr2821 {; Modified Sylvie Gallet frm. [101324,3444],1996
  1881.           ; Converted to if.else by Sylvie Gallet and George Martin 3/97
  1882.           ; passes=3D1 needs to be used with this PHC formula.
  1883.    pixinv =3D 0.1/pixel
  1884.    p9 =3D 0.9*pixinv
  1885.    imagp1 =3D imag(p1)
  1886.    imagp2 =3D imag(p2)
  1887.    IF (whitesq)
  1888.       z =3D zorig =3D pixel - conj(pixinv)
  1889.       c =3D pixel - flip(pixinv) - conj(0.01*pixinv) - p9
  1890.       mz =3D |z|
  1891.    ELSE
  1892.       c =3D flip(pixinv) + conj(0.01*pixinv) - pixel - p9
  1893.       z =3D zorig =3D conj(pixinv) - pixel
  1894.       mz =3D |z|
  1895.    ENDIF
  1896.    bailout =3D 16
  1897.    iter =3D 0
  1898.    :
  1899.    IF (iter=3D=3Dp1)
  1900.       z =3D mz =3D 0
  1901.       c =3D 1.5*zorig^1.2 - p9
  1902.    ELSEIF (iter=3D=3Dimagp1)
  1903.       z =3D mz =3D 0
  1904.       c =3D 2.25*conj(zorig) - p9
  1905.    ELSEIF (iter=3D=3Dp2)
  1906.       z =3D mz =3D 0
  1907.       c =3D 3.375*flip(zorig) - p9
  1908.    ELSEIF (iter=3D=3Dimagp2)
  1909.       z =3D mz =3D 0
  1910.       c =3D 5.0625*flip(zorig) - p9
  1911.    ENDIF
  1912.    z =3D mz*0.2 + z*z + c
  1913.    mz =3D |z|
  1914.    iter =3D iter + 1
  1915.    mz <=3D bailout
  1916. }
  1917.  
  1918.  
  1919. _2821570           { ;                                       t=3D  0:38:3=
  1920. 5.16
  1921.                      ; on a P233 at 1600x900  Apr 11, 1999  11:19:52
  1922.                      ; Image Copyright 1999 by Lee H. Skinner ver=3D1961
  1923.                      ;  Version 1961 Patchlevel 69
  1924.   reset=3D1961 type=3Dformula formulafile=3Dfractint.frm
  1925.   formulaname=3Dcarr2821 passes=3D1
  1926.   center-mag=3D-0.09038201447702857/-0.43587405182779220/1366163/0.75
  1927.   params=3D200/300/400/550 float=3Dy maxiter=3D647 periodicity=3D0
  1928.   viewwindows=3D4.2/0.563/yes/1600/900
  1929.   colors=3D000rY0oU0<2>0CI0FM<6>YdAbh8gl6<3>zz0<4>nY0lT0iN0<3>`00<3>mVQpb=
  1930. Wtj\
  1931.   awqhzyn<3>zkZygVydR<2>yUF<3>yHLxENxBOx7Qx4R<3>h5Sc5S_6T<3>K6AG65C50<3>3=
  1932. 3\
  1933.   1022055<3>0GG0JJ0MM0P00M24L08TW<3>OXeSYgWZi__lc`n0TplQ0iN0gJ0<2>p80<2>R=
  1934. 0\
  1935.   0P00<4>000023057kbs<3>OKSIFLCAE657000220457<6>JNWMQ_OTc<3>Xcr<9>CFLADH8=
  1936. A\
  1937.   E<2>23300000500A<3>05D07D08E<4>EN8HQ7KT6<3>We0<4>JQ5HN6EK7CH89E96AB47A1=
  1938. 4\
  1939.   9000<3>II0MM0RR0WW0<3>hhMlkSooY<2>zynwtosop<8>NhlJgkFgk<3>0ch0ae0Zb<3>2=
  1940. 2\
  1941.   R<3>44F45C569335000000400<2>A00C00C00D00000F00<3>I00J00K00<3>O00<4>zg0x=
  1942. d\
  1943.   0u`0 sound=3Dyes/pc
  1944.   }
  1945.  
  1946. _2821665           { ;                                       t=3D  0:37:2=
  1947. 7.72
  1948.                      ; on a P233 at 1600x900  Apr 11, 1999  11:20:47
  1949.                      ; Image Copyright 1999 by Lee H. Skinner ver=3D1961
  1950.                      ;  Version 1961 Patchlevel 69
  1951.   reset=3D1961 type=3Dformula formulafile=3Dfractint.frm
  1952.   formulaname=3Dcarr2821 passes=3D1
  1953.   center-mag=3D-0.08992770456599442/-0.43542268193956660/73229.23/0.75
  1954.   params=3D200/300/400/550 float=3Dy maxiter=3D647 periodicity=3D0
  1955.   viewwindows=3D4.2/0.563/yes/1600/900
  1956.   colors=3D000gl6<3>zz0<4>nY0lT0iN0<3>`00<3>mVQpbWtjawqhzyn<3>zkZygVydR<2=
  1957. >yU\
  1958.   F<3>yHLxENxBOx7Qx4R<4>c5S_6TW6T<2>K7TG7UC5M83F42763A00G022<3>0DD0GG0JJ0=
  1959. M\
  1960.   M0P00M24L08TW<3>OXeSYgWZi<3>lQ0iN0gJ0<2>p80<2>R00P00<4>000023057<3>0451=
  1961. 4\
  1962.   4143<2>131220457<6>JNWMQ_OTc<3>Xcr<9>CFLADH8AE<2>23300000500A<3>05D07D0=
  1963. 8\
  1964.   E<4>EN8HQ7KT6<3>We0<4>JQ5HN6EK7CH89E96AB47A149000<3>II0MM0RR0WW0<3>hhMl=
  1965. k\
  1966.   SooY<2>zynwtosop<8>NhlJgkFgk<3>0ch0ae0Zb<3>2ER29O33L<2>45C5693350000004=
  1967. 0\
  1968.   0<2>A00C00C00D00000F00<3>I00J00K00<3>O00<3>rZ0zg0xd0<2>oU007A<2>0FM<7>b=
  1969. h\
  1970.   8 sound=3Dyes/pc
  1971.   }
  1972.  
  1973. _2821685           { ;                                       t=3D  0:16:1=
  1974. 3.88
  1975.                      ; on a P233 at 1600x900  Apr 11, 1999  11:20:59
  1976.                      ; Image Copyright 1999 by Lee H. Skinner ver=3D1961
  1977.                      ;  Version 1961 Patchlevel 69
  1978.   reset=3D1961 type=3Dformula formulafile=3Dfractint.frm
  1979.   formulaname=3Dcarr2821 passes=3D1
  1980.   center-mag=3D-0.17885355142101680/-0.60159203667394400/38885.02/0.75/-3=
  1981. 9.9\
  1982.   99 params=3D200/300/400/550 float=3Dy maxiter=3D647 periodicity=3D0
  1983.   viewwindows=3D4.2/0.563/yes/1600/900
  1984.   colors=3D000C5M83F42763A00G022055088<3>3HI4JL5MN<2>8TW<3>OXeSYgWZi__lc`=
  1985. ngW\
  1986.   QlQ0iN0gJ0<2>p80<3>S30M20P78<3>cScgXkkbs<3>OKSIFLCAE657000220<7>1NV1QZ1=
  1987. T\
  1988.   b<3>0cr<5>3PZ4NW5KS<2>7DI8AE68A45723300000500A<3>05D07D08E<4>EN8HQ7KT6<=
  1989. 3\
  1990.   >We0<4>JQ5HN6EK7CH89E96AB47A149000<3>II0MM0RR0WW0<3>hhMlkSooY<2>zynwtos=
  1991. o\
  1992.   p<8>NhlJgkFgk<3>0ch0ae0Zb<3>22R<3>44F45C569335000000400<2>A00C00C00D000=
  1993. 0\
  1994.   0F00<3>I00J00K00<3>O00<3>rZ0zg0xd0<2>oU0<3>_U7WU9SUBOUDJUF<3>bh8gl6lo5<=
  1995. 2\
  1996.   >zz0<4>nY0lT0iN0<3>`00<3>mVQpbWtjawqhzyn<3>zkZygVydR<2>yUF<3>yHLxENxBOx=
  1997. 7\
  1998.   Qx4R<10>G7U sound=3Dyes/pc
  1999.   }
  2000.  
  2001. _2821732           { ;                                       t=3D  0:39:1=
  2002. 1.07
  2003.                      ; on a P233 at 1600x900  Apr 11, 1999  11:21:30
  2004.                      ; Image Copyright 1999 by Lee H. Skinner ver=3D1961
  2005.                      ;  Version 1961 Patchlevel 69
  2006.   reset=3D1961 type=3Dformula formulafile=3Dfractint.frm
  2007.   formulaname=3Dcarr2821 passes=3D1
  2008.   center-mag=3D-0.09284551716413093/-0.43504743584154330/2.009519e+008/0.=
  2009. 75/\
  2010.   4.994/0.01 params=3D200/300/400/550 float=3Dy maxiter=3D647 periodicity=
  2011. =3D0
  2012.   viewwindows=3D4.2/0.563/yes/1600/900
  2013.   colors=3D000xBOx7Qx4R<4>c5S_6TW6T<2>K7TG7UC5M83F42763A00G022<3>0DD0GG0J=
  2014. J0M\
  2015.   M0P00M24L08TW<3>OXeSYgWZi__lc`n<3>gJ0<3>W40T00R00P00<2>A00<3>cVgkbseZl<=
  2016. 3\
  2017.   >IFLCAE657000220457<6>JNWMQ_OTc<3>Xcr<9>CFLADH8AE<2>23300000500A<3>05D0=
  2018. 7\
  2019.   D08E<4>EN8HQ7KT6<3>We0<4>JQ5HN6EK7CH89E96AB47A149000<3>II0MM0RR0WW0<3>h=
  2020. h\
  2021.   MlkSooY<2>zynwtosop<8>NhlJgkFgk<3>0ch0ae0Zb<3>22R<3>44F45C5693350000004=
  2022. 0\
  2023.   0<2>A00C00C00D00000F00<3>I00J00K00<3>O00<3>rZ0zg0xd0u`0rY0<3>BJH0FM5JK<=
  2024. 5\
  2025.   >YdAbh8gl6<3>zz0<4>nY0lT0iN0<3>`00<3>mVQpbWtjawqhzyn<3>fhhacfX_dRVb<6>x=
  2026. E\
  2027.   N sound=3Dyes/pc
  2028.   }
  2029.  
  2030. _2821749           { ;                                       t=3D  0:37:3=
  2031. 3.98
  2032.                      ; on a P233 at 1600x900  Apr 11, 1999  11:21:41
  2033.                      ; Image Copyright 1999 by Lee H. Skinner ver=3D1961
  2034.                      ;  Version 1961 Patchlevel 69
  2035.   reset=3D1961 type=3Dformula formulafile=3Dfractint.frm
  2036.   formulaname=3Dcarr2821 passes=3D1
  2037.   center-mag=3D-0.09106568163733537/-0.43575847710116510/1.91681e+007/0.7=
  2038. 5/-\
  2039.   37.499 params=3D200/300/400/550 float=3Dy maxiter=3D647 periodicity=3D0=
  2040.  
  2041.   viewwindows=3D4.2/0.563/yes/1600/900
  2042.   colors=3D000<3>0BB0DD0GG0JJ0MM<2>6RT8TWCUZ<3>SYgWZi__lc`ngWQlQ0iN0gJ0<2=
  2043. >p8\
  2044.   0<2>W20P00K00<3>000023057<3>JHNOKSIFL<2>000220457<6>JNWMQ_OTc<3>Xcr<9>C=
  2045. F\
  2046.   LADH8AE<2>23300000500A<3>05D07D08E<4>EN8HQ7KT6<3>We0<4>JQ5HN6EK7CH89E96=
  2047. A\
  2048.   B47A149000<3>II0MM0RR0WW0<3>hhMlkSooY<2>zynwtosop<8>NhlJgkFgk<3>0ch0ae0=
  2049. Z\
  2050.   b<3>22R<3>44F45C569335000000400<2>A00C00C00D00000F00<3>I00J00K00<3>O00<=
  2051. 3\
  2052.   >rZ0zg0xd0<2>oU0<2>0CI0FM<6>YdAbh8gl6<3>zz0<4>nY0lT0iN0<3>`00<3>mVQpbWt=
  2053. j\
  2054.   awqhzyn<3>zkZygVydR<2>yUF<3>yHLxENxBOx7Qx4R<4>c5S_6TW6T<2>K7TG7UC5M83F4=
  2055. 2\
  2056.   763A00G sound=3Dyes/pc
  2057.   }
  2058.  
  2059. _2821777           { ;                                       t=3D  0:40:5=
  2060. 3.14
  2061.                      ; on a P233 at 1600x900  Apr 11, 1999  11:22:00
  2062.                      ; Image Copyright 1999 by Lee H. Skinner ver=3D1961
  2063.                      ;  Version 1961 Patchlevel 69
  2064.   reset=3D1961 type=3Dformula formulafile=3Dfractint.frm
  2065.   formulaname=3Dcarr2821 passes=3D1
  2066.   center-mag=3D-0.09106249590870003/-0.43575884532959520/7.886838e+008/0.=
  2067. 75/\
  2068.   -37.5 params=3D200/300/400/550 float=3Dy maxiter=3D647 periodicity=3D0
  2069.   viewwindows=3D4.2/0.563/yes/1600/900
  2070.   colors=3D000PUd<5>CFLADH8AE<2>23300000500A<3>05D07D08E<3>BK9EN8HQ7KT6NW=
  2071. 4<2\
  2072.   >ij1qo0vtg<2>JQ5<3>9E96AB47A149000<3>II0MM0RR0WW0<3>hhMlkSooY<2>zynwtos=
  2073. o\
  2074.   p<8>NhlJgkFgk<3>0ch0ae0Zb<3>22R<3>44F45C569335000000400<2>A00C00C00D000=
  2075. 0\
  2076.   0F00<3>I00J00K00<3>O00<3>rZ0zg0xd0<2>oU0<2>0CI0FM<6>YdAbh8gl6<3>zz0<4>n=
  2077. Y\
  2078.   0lT0iN0<3>`00<3>mVQpbWtjawqhzyn<3>zkZygVydR<2>yUF<3>yHLxENxBOx7Qx4R<2>l=
  2079. 5\
  2080.   Sh5Sb5S<3>D2T71T00UC5M83F42763A<4>4G63J53M4<3>0X06RT8TW<3>OXeSYgWZi__lc=
  2081. `\
  2082.   ngWQlQ0iN0gJ0<2>p80<2>W20P00K00<3>000023057<3>JHNOKSIFL<2>000220457<6>J=
  2083. N\
  2084.   WMQ_OTc<3>Xcr<2>RXh sound=3Dyes/pc
  2085.   }
  2086.  
  2087.  
  2088. Lee Skinner
  2089.  
  2090. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2091. Post Message:   fractint@lists.xmission.com
  2092. Get Commands:   majordomo@lists.xmission.com "help"
  2093. Administrator:  twegner@phoenix.net
  2094. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2095.  
  2096.  
  2097. -------------------------------------------------------------------------------
  2098.  
  2099. From: JoWeber <JoWeber@compuserve.com>
  2100. Subject: (fractint) some pars
  2101. Date: 12 Jun 1999 17:17:39 -0400
  2102.  
  2103. Hi All,
  2104.  
  2105. some nice images.
  2106. --Jo--
  2107.  
  2108. http://www.joweber.de
  2109.  
  2110. jo06_01            { ; t=3D  4:21:49.08 =
  2111.  
  2112.                      ; on a P233MMX at 1600x1200  Jun 12, 1999  23:09:50
  2113.                      ; Par and Image Copyright 1999 by Jo Weber
  2114.                      ; e-mail to JoWeber@compuserve.com
  2115.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  2116.   formulaname=3Dmandelbrotmix4 function=3Dident passes=3Dt
  2117.   center-mag=3D+0.00003582776617623/+0.00016408568488817/12126.4/1/-37.49=
  2118. 9
  2119.   params=3D-500/-500/-1.1/-1/0/0 float=3Dy maxiter=3D7200 bailout=3D25
  2120.   inside=3D0 logmap=3D6 symmetry=3Dnone periodicity=3D10
  2121.   colors=3D000C5M83F42763A00G022055<2>2DD2FG3HI4JL5MN<2>8TW<2>KWcOXeSYgWZ=
  2122. i__\
  2123.   lc`ngWQlQ0iN0gJ0<2>p80<4>M20<6>kbs<7>000220<6>1KR1NV1QZ1Tb1Wf1Zj0`n0cr<=
  2124. 5\
  2125.   >3PZ4NW5KS6IP6FL7DI8AE<2>23300000500A<5>08E<7>NW5Q_3Tb2We0Tb1<7>9E96AB4=
  2126. 7\
  2127.   A149000<3>II0MM0RR0WW0<3>hhMlkSooYsrcvvhzynwtosop<8>NhlJgkFgkBfj8ej4di0=
  2128. c\
  2129.   h0ae0Zb<3>22R<5>569335000000400<2>A00C00C00D00000F00<9>O00<4>zg0<2>rY0o=
  2130. U\
  2131.   0kU2<6>JUF<4>gl6lo5qs3uv2zz0<10>`00<2>jNKmVQpbWtjawqhzyn<8>yUF<7>x4R<10=
  2132. >\
  2133.   G7U
  2134.   }
  2135.  
  2136. jo06_02            { ; t=3D  1:18:04.55 =
  2137.  
  2138.                      ; on a P233MMX at 1600x1200  Jun 12, 1999  23:10:15
  2139.                      ; Par and Image Copyright 1999 by Jo Weber
  2140.                      ; e-mail to JoWeber@compuserve.com
  2141.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  2142.   formulaname=3Dmandelbrotmix4 function=3Dident passes=3D1
  2143.   center-mag=3D+1.54894524500705000/+0.18323164348929450/2.03882e+011
  2144.   params=3D-150/1.5/1.5/150/-0.9949/0 float=3Dy maxiter=3D1000 bailout=3D=
  2145. 25
  2146.   inside=3D0 logmap=3D273 symmetry=3Dxaxis periodicity=3D10
  2147.   colors=3D000r_FtaDvdByg8yh5yi3yg3<2>ga3<33>301<11>b0Ee0Ff5I<10>zzs<7>fV=
  2148. 7cQ\
  2149.   0`O0<2>SI0<6>P60<2>G00<4>0Qc<7>Adc<10>mrnptotupxwrzyt<2>zudzsZyqUyoOynJ=
  2150. y\
  2151.   lDxj2wiK<3>vc4ua0ub3<3>vhJviNvjPwkR<2>ypbyqfysiytmzvqzwu<13>wCM<7>H84<1=
  2152. 2\
  2153.   >hMB<14>H84FB3PG3<6>zk0<3>0kk<2>WgD<3>CXF<2>FWEGVEHUEITEJTDKSDLSDMRCOQB=
  2154. O\
  2155.   RA<2>OK8OH7OE6NB5PC6<7>eLAhMBiOD<3>nVJpXH
  2156.   }
  2157.  
  2158. jo06_03            { ; t=3D  0:26:59.32 =
  2159.  
  2160.                      ; on a P233MMX at 1600x1200  Jun 12, 1999  23:10:23
  2161.                      ; Par and Image Copyright 1999 by Jo Weber
  2162.                      ; e-mail to JoWeber@compuserve.com
  2163.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  2164.   formulaname=3Dmandelbrotmix4 function=3Dident passes=3D1
  2165.   center-mag=3D+0.48421237835691310/+0.85671571876294970/2.822814e+012/1/=
  2166. 102\
  2167.   .499/-0.001 params=3D1e-008/800/2e-008/400/100000000/0 float=3Dy
  2168.   maxiter=3D1200 bailout=3D25 inside=3D0 logmap=3D51 symmetry=3Dnone
  2169.   periodicity=3D10
  2170.   colors=3D000C5M83F42763A00G022055<2>2DD2FG3HI4JL5MN<2>8TW<2>KWcOXeSYgWZ=
  2171. i__\
  2172.   lc`ngWQlQ0iN0gJ0<2>p80<4>M20<6>kbs<7>000220<6>1KR1NV1QZ1Tb1Wf1Zj0`n0cr<=
  2173. 5\
  2174.   >3PZ4NW5KS6IP6FL7DI8AE<2>23300000500A<5>08E<7>NW5Q_3Tb2We0Tb1<7>9E96AB4=
  2175. 7\
  2176.   A149000<3>II0MM0RR0WW0<3>hhMlkSooYsrcvvhzynwtosop<8>NhlJgkFgkBfj8ej4di0=
  2177. c\
  2178.   h0ae0Zb<3>22R<5>569335000000400<2>A00C00C00D00000F00<9>O00<4>zg0<2>rY0o=
  2179. U\
  2180.   0kU2<6>JUF<4>gl6lo5qs3uv2zz0<10>`00<2>jNKmVQpbWtjawqhzyn<8>yUF<7>x4R<10=
  2181. >\
  2182.   G7U
  2183.   }
  2184.  
  2185. jo06_04            { ; t=3D  0:23:48.12 =
  2186.  
  2187.                      ; on a P233MMX at 1600x1200  Jun 12, 1999  23:10:33
  2188.                      ; Par and Image Copyright 1999 by Jo Weber
  2189.                      ; e-mail to JoWeber@compuserve.com
  2190.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  2191.   formulaname=3Dmandelbrotmix4 function=3Dident passes=3D1
  2192.   center-mag=3D+0.48421237835460350/+0.85671571875166410/1.649247e+012/1/=
  2193. 114\
  2194.   .997/0.001 params=3D1e-008/800/2e-008/400/100000000/0 float=3Dy
  2195.   maxiter=3D1200 bailout=3D25 inside=3D0 logmap=3D51 symmetry=3Dnone
  2196.   periodicity=3D10
  2197.   colors=3D000xBOx7Qx4R<6>W6TS6TO7TK7TG7UC5M83F42763A00G022<6>0MM0P00M24L=
  2198. 08T\
  2199.   W<2>KWcOXeSYgWZi__lc`n<3>gJ0<4>T00R00P00<2>A00<4>kbs<7>000220457<5>HKSJ=
  2200. N\
  2201.   WMQ_OTcQWg<2>Xcr<14>23300000500A<5>08E<7>NW5Q_3Tb2We0Tb1<7>9E96AB47A149=
  2202. 0\
  2203.   00<3>II0MM0RR0WW0<3>hhMlkSooYsrcvvhzynwtosop<8>NhlJgkFgkBfj8ej4di0ch0ae=
  2204. 0\
  2205.   Zb<3>22R<5>569335000000400<2>A00C00C00D00000F00<9>O00<4>zg0<2>rY0<4>0FM=
  2206. <\
  2207.   6>YdAbh8gl6lp5qs3uw2zz0<10>`00<2>jNKmVQpbWtjawqhzyn<2>kljfhhacfX_dRVb<6=
  2208. >\
  2209.   xEN
  2210.   }
  2211.  
  2212. jo06_05            { ; t=3D  0:27:14.30 =
  2213.  
  2214.                      ; on a P233MMX at 1600x1200  Jun 12, 1999  23:10:43
  2215.                      ; Par and Image Copyright 1999 by Jo Weber
  2216.                      ; e-mail to JoWeber@compuserve.com
  2217.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  2218.   formulaname=3Dmandelbrotmix4 function=3Dident passes=3D1
  2219.   center-mag=3D+0.48421237835487980/+0.85671571875186660/7.929566e+012/0.=
  2220. 999\
  2221.   8/114.991/0.005 params=3D1e-008/800/2e-008/400/100000000/0 float=3Dy
  2222.   maxiter=3D1200 bailout=3D25 inside=3D0 logmap=3D51 symmetry=3Dnone
  2223.   periodicity=3D10
  2224.   colors=3D0009G4<5>OZ7Ra8Ud9XhAZiA<10>zzF<7>0Uz<13>AMOBLLCKK<11>MC7NB5PC=
  2225. 6<7\
  2226.   >eLAhMBiODjQF<7>xu7zz5zz4zz3<14>zE6<19>000000<12>b0Ee0Ff5I<10>zzs<7>fV7=
  2227. c\
  2228.   Q0`O0<2>SI0<6>P60<2>G00<2>7FO<10>GUcHWeJYf<8>booeqpgqq<3>ouuqvvqrv<5>qU=
  2229. y\
  2230.   rPzpOy<8>Z8nX6lXDj<2>X_a<4>zz0<7>z90<12>G30C209206103100003516B2
  2231.   }
  2232.  
  2233. jo06_06            { ; t=3D  0:23:54.87 =
  2234.  
  2235.                      ; on a P233MMX at 1600x1200  Jun 12, 1999  23:10:52
  2236.                      ; Par and Image Copyright 1999 by Jo Weber
  2237.                      ; e-mail to JoWeber@compuserve.com
  2238.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  2239.   formulaname=3Dmandelbrotmix4 function=3Dident passes=3D1
  2240.   center-mag=3D+0.48421237835452590/+0.85671571875109320/9.589534e+012/1/=
  2241. 114\
  2242.   .999/0.003 params=3D1e-008/800/2e-008/400/100000000/0 float=3Dy
  2243.   maxiter=3D1200 bailout=3D25 inside=3D0 logmap=3D51 symmetry=3Dnone
  2244.   periodicity=3D10
  2245.   colors=3D000cU4<2>zp2<9>_iGXhIXgH<7>P`GRaF<9>OE6NB5PC6<7>eLAhMBiODjQF<7=
  2246. >xu\
  2247.   7zz5zz4zz3<14>zE6<19>000000<12>b0Ee0Ff5I<2>lLS<6>xt4zz0zzIyy_xxq<2>ioZd=
  2248. l\
  2249.   SajO<5>IY0<8>E87D58B9E<3>1Rc<5>8bcAdcDed<11>tupxwrzyt<30>Bwu<13>wCM<11>=
  2250. 7\
  2251.   73<7>NPAQSBQRB<4>LJ9KH9JF8JE7<5>H84OF4WN4
  2252.   }
  2253.  
  2254. jo06_07            { ; t=3D  0:20:49.11 =
  2255.  
  2256.                      ; on a P233MMX at 1600x1200  Jun 12, 1999  23:11:00
  2257.                      ; Par and Image Copyright 1999 by Jo Weber
  2258.                      ; e-mail to JoWeber@compuserve.com
  2259.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  2260.   formulaname=3Dmandelbrotmix4 function=3Dident passes=3D1
  2261.   center-mag=3D+1.00005032900213700/+0.00791439171380570/1.677787e+011/1/=
  2262. 174\
  2263.   .999 params=3D1e-008/800/2e-008/400/197520000/0 float=3Dy maxiter=3D120=
  2264. 0
  2265.   bailout=3D25 inside=3D0 logmap=3D42 symmetry=3Dnone periodicity=3D10
  2266.   colors=3D000bY3<29>301<11>b0Ee0Ff5I<10>zzs<7>fV7cQ0`O0<2>SI0<6>P60<2>G0=
  2267. 0<4\
  2268.   >0Qc<7>Adc<10>mrnptotupxwrzyt<2>zudzsZyqUyoOynJylDxj2wiK<3>vc4ua0ub3<3>=
  2269. v\
  2270.   hJviNvjPwkR<2>ypbyqfysiytmzvqzwu<13>wCM<7>H84<12>hMB<14>H84FB3PG3<6>zk0=
  2271. <\
  2272.   3>0kk<2>WgD<3>CXF<2>FWEGVEHUEITEJTDKSDLSDMRCOQBORA<2>OK8OH7OE6NB5PC6<7>=
  2273. e\
  2274.   LAhMBiOD<3>nVJ<3>vdByg8yh5yi3yg3<2>ga3<2>cZ3
  2275.   }
  2276.  
  2277. jo06_08            { ; t=3D  1:23:22.72 =
  2278.  
  2279.                      ; on a P233MMX at 1600x1200  Jun 12, 1999  23:11:19
  2280.                      ; Par and Image Copyright 1999 by Jo Weber
  2281.                      ; e-mail to JoWeber@compuserve.com
  2282.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  2283.   formulaname=3Dmandelbrotmix4 function=3Dident passes=3D1
  2284.   center-mag=3D+1.54894524500359000/+0.18323164348628370/8.358962e+011
  2285.   params=3D-150/1.5/1.5/150/-0.9949/0 float=3Dy maxiter=3D1000 bailout=3D=
  2286. 25
  2287.   inside=3D0 logmap=3D273 symmetry=3Dxaxis periodicity=3D10
  2288.   colors=3D000000<10>0J00L00N00P02Q44S8<13>`oz<7>JaWG`SEZOBXK9WG<2>2Q40P0=
  2289. 0N0\
  2290.   <13>010000000<9>00G00I00K00M00N00P<15>0zz<15>00P<14>001000000<9>G00I00K=
  2291. 0\
  2292.   0M00N00P00<15>zz0<7>i`MgYPeVSbRV`OXZL_XHbVEeSBh<14>7Ow5Px5Nt<6>3CV2BR29=
  2293. N\
  2294.   17J16F<2>013000000700<23>W0CX0CY0DZ0E<2>a0F<15>700
  2295.   }
  2296.  
  2297. jo06_09            { ; t=3D  1:21:33.37 =
  2298.  
  2299.                      ; on a P233MMX at 1600x1200  Jun 12, 1999  23:11:28
  2300.                      ; Par and Image Copyright 1999 by Jo Weber
  2301.                      ; e-mail to JoWeber@compuserve.com
  2302.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  2303.   formulaname=3Dmandelbrotmix4 function=3Dident passes=3D1
  2304.   center-mag=3D+1.54894524500060400/+0.18323164348882140/1.499139e+012/0.=
  2305. 999\
  2306.   9 params=3D-150/1.5/1.5/150/-0.9949/0 float=3Dy maxiter=3D1000 bailout=3D=
  2307. 25
  2308.   inside=3D0 logmap=3D273 symmetry=3Dxaxis periodicity=3D10
  2309.   colors=3D000r_FtaDvdByg8yh5yi3yg3<2>ga3<33>301<11>b0Ee0Ff5I<10>zzs<7>fV=
  2310. 7cQ\
  2311.   0`O0<2>SI0<6>P60<2>G00<4>0Qc<7>Adc<7>bnkepliqmmsnptotupxwrzyt<2>zudzsZy=
  2312. q\
  2313.   UyoOynJylDxj2wiK<3>vc4ua0ub3<3>vhJviNvjPwkR<2>ypbyqfysiytmzvqzwu<4>yfhy=
  2314. c\
  2315.   ex_cxXa<5>wCM<7>H84<12>hMB<14>H84FB3PG3<6>zk0<3>0kk<2>WgD<3>CXF<2>FWEGV=
  2316. E\
  2317.   HUEITEJTDKSDLSDMRCOQBORA<2>OK8OH7OE6NB5PC6<7>eLAhMBiOD<3>nVJpXH
  2318.   }
  2319.  
  2320. frm:MandelbrotMix4 {; Jim Muth
  2321. a=3Dreal(p1), b=3Dimag(p1), d=3Dreal(p2), f=3Dimag(p2), g=3D1/f,
  2322. h=3D1/d, j=3D1/(f-b), z=3D(-a*b*g*h)^j, k=3Dreal(p3)+1,
  2323. l=3Dimag(p3)+100, c=3Dfn1(pixel):
  2324. z=3Dk*((a*(z^b))+(d*(z^f)))+c,
  2325. |z| < l
  2326. }
  2327.  
  2328. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2329. Post Message:   fractint@lists.xmission.com
  2330. Get Commands:   majordomo@lists.xmission.com "help"
  2331. Administrator:  twegner@phoenix.net
  2332. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2333.  
  2334.  
  2335. -------------------------------------------------------------------------------
  2336.  
  2337. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  2338. Subject: (fractint) New Gallery
  2339. Date: 12 Jun 1999 17:46:31 -0400
  2340.  
  2341. Hi All,
  2342.  
  2343.   I have added a new gallery (#10) with 12 mandel zooms to my site:
  2344.  
  2345.     http://ourworld.compuserve.com/homepages/Sylvie_Gallet/homepage.htm
  2346.  
  2347.   Enjoy!
  2348.  
  2349.         - Sylvie
  2350.  
  2351. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2352. Post Message:   fractint@lists.xmission.com
  2353. Get Commands:   majordomo@lists.xmission.com "help"
  2354. Administrator:  twegner@phoenix.net
  2355. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2356.  
  2357.  
  2358. -------------------------------------------------------------------------------
  2359.  
  2360. From: BillatNY@aol.com
  2361. Subject: Re: (fractint) New Gallery
  2362. Date: 13 Jun 1999 08:13:11 EDT
  2363.  
  2364. Sylvie,
  2365.  
  2366. Fabulous!  Really beautiful pictures (as always).
  2367.  
  2368. BTW- The link to gallery 9 does not seem to be working properly.
  2369.  
  2370. Bill
  2371.  
  2372. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2373. Post Message:   fractint@lists.xmission.com
  2374. Get Commands:   majordomo@lists.xmission.com "help"
  2375. Administrator:  twegner@phoenix.net
  2376. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2377.  
  2378.  
  2379. -------------------------------------------------------------------------------
  2380.  
  2381. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  2382. Subject: Re: (fractint) New Gallery
  2383. Date: 13 Jun 1999 14:42:06 -0400
  2384.  
  2385. Hi Bill,
  2386.  
  2387. >> Fabulous!  Really beautiful pictures (as always).
  2388.  
  2389.   Thank you very much!
  2390.  
  2391. >> BTW- The link to gallery 9 does not seem to be working properly.
  2392.  
  2393.   It should work but there are often problems with the AOL part of my sit=
  2394. e.
  2395.  Please try again and let me know if the problem persists.
  2396.  
  2397.   Cheers,
  2398.  
  2399.         - Sylvie
  2400.  
  2401. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2402. Post Message:   fractint@lists.xmission.com
  2403. Get Commands:   majordomo@lists.xmission.com "help"
  2404. Administrator:  twegner@phoenix.net
  2405. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2406.  
  2407.  
  2408. -------------------------------------------------------------------------------
  2409.  
  2410. From: "Les St Clair" <les_stclair@crosstrees.prestel.co.uk>
  2411. Subject: (fractint) May Par Collection
  2412. Date: 13 Jun 1999 20:45:28 +0100
  2413.  
  2414. Hi folks,
  2415.  
  2416. A little later than usual, but the May par collection of postings to this mail
  2417. list is now available at:
  2418.  
  2419. http://ourworld.compuserve.com/homepages/Les_StClair/fml.htm
  2420. (just the parameters)
  2421.  
  2422. or, if you prefer the pars with their original messages left intact you can get
  2423. this version:
  2424.  
  2425. http://www.homeusers.prestel.co.uk/crosstrees/fml.htm
  2426.  
  2427. I've also introduced a "Fractal of the Month" on this page. So drop in if you
  2428. want to see which one turned out to be my fave for May.
  2429.  
  2430. The updated formula collection (frac_ml.frm) is available from both sites.
  2431.  
  2432. cheers,
  2433. Les
  2434.  
  2435.  
  2436.  
  2437.  
  2438.  
  2439.  
  2440.  
  2441. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2442. Post Message:   fractint@lists.xmission.com
  2443. Get Commands:   majordomo@lists.xmission.com "help"
  2444. Administrator:  twegner@phoenix.net
  2445. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2446.  
  2447.  
  2448. -------------------------------------------------------------------------------
  2449.  
  2450. From: "Marie Drozdis" <mariedrozdis@att.net>
  2451. Subject: Re: (fractint) New Gallery
  2452. Date: 13 Jun 1999 20:28:41 -0700
  2453.  
  2454. Sylvie,
  2455.  
  2456. I, too, wasn't able to view gallery nine.  I tried thirty minutes ago. My
  2457. browser is MSIE5.
  2458.  
  2459. What wonderful fractals you originate!  You are an inspiration to so many of
  2460. us.
  2461.  
  2462. Marie :)
  2463. ----- Original Message -----
  2464. Sent: Sunday, June 13, 1999 11:42 AM
  2465.  
  2466.  
  2467. Hi Bill,
  2468.  
  2469. >> Fabulous!  Really beautiful pictures (as always).
  2470.  
  2471.   Thank you very much!
  2472.  
  2473. >> BTW- The link to gallery 9 does not seem to be working properly.
  2474.  
  2475.   It should work but there are often problems with the AOL part of my site.
  2476.  Please try again and let me know if the problem persists.
  2477.  
  2478.   Cheers,
  2479.  
  2480.         - Sylvie
  2481.  
  2482. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2483. Post Message:   fractint@lists.xmission.com
  2484. Get Commands:   majordomo@lists.xmission.com "help"
  2485. Administrator:  twegner@phoenix.net
  2486. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2487.  
  2488.  
  2489.  
  2490. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2491. Post Message:   fractint@lists.xmission.com
  2492. Get Commands:   majordomo@lists.xmission.com "help"
  2493. Administrator:  twegner@phoenix.net
  2494. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2495.  
  2496.  
  2497. -------------------------------------------------------------------------------
  2498.  
  2499. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  2500. Subject: Re: (fractint) New Gallery
  2501. Date: 14 Jun 1999 12:25:50 -0400
  2502.  
  2503. Hi Marie,
  2504.  
  2505. >> I, too, wasn't able to view gallery nine.  I tried thirty minutes ago.=
  2506.  
  2507. >> My browser is MSIE5.
  2508.  
  2509.   I've re-uploaded page_9_e.htm yesterday evening (French time), so you
  2510. should be able to see gallery 9.
  2511.  
  2512. >> What wonderful fractals you originate!  You are an inspiration to so
  2513. >> many of us.
  2514.  
  2515.   Thank you!
  2516.  
  2517.   Cheers,
  2518.  
  2519.         - Sylvie
  2520.  
  2521. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2522. Post Message:   fractint@lists.xmission.com
  2523. Get Commands:   majordomo@lists.xmission.com "help"
  2524. Administrator:  twegner@phoenix.net
  2525. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2526.  
  2527.  
  2528. -------------------------------------------------------------------------------
  2529.  
  2530. From: "Dave Hershey (Volt Computer)" <a-davehe@microsoft.com>
  2531. Subject: RE: (fractint) New Gallery
  2532. Date: 14 Jun 1999 10:39:48 -0700
  2533.  
  2534. This is my favorite part of this list.  The links to nifty galleries.
  2535. Thanks.
  2536.  
  2537. --Dave.
  2538.  
  2539.  
  2540. -----Original Message-----
  2541. Sent: Saturday, June 12, 1999 2:47 PM
  2542.  
  2543.  
  2544. Hi All,
  2545.  
  2546.   I have added a new gallery (#10) with 12 mandel zooms to my site:
  2547.  
  2548.     http://ourworld.compuserve.com/homepages/Sylvie_Gallet/homepage.htm
  2549.  
  2550.   Enjoy!
  2551.  
  2552.         - Sylvie
  2553.  
  2554. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2555. Post Message:   fractint@lists.xmission.com
  2556. Get Commands:   majordomo@lists.xmission.com "help"
  2557. Administrator:  twegner@phoenix.net
  2558. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2559.  
  2560. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2561. Post Message:   fractint@lists.xmission.com
  2562. Get Commands:   majordomo@lists.xmission.com "help"
  2563. Administrator:  twegner@phoenix.net
  2564. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2565.  
  2566.  
  2567. -------------------------------------------------------------------------------
  2568.  
  2569. From: Sylvie Gallet <Sylvie_Gallet@compuserve.com>
  2570. Subject: (fractint) New Gallery
  2571. Date: 14 Jun 1999 15:57:07 -0400
  2572.  
  2573. Hi All,
  2574.  
  2575.   It's me, again!  I just added three new embossed mandels to my Gallery
  2576. #10:
  2577.  
  2578.    <http://ourworld.compuserve.com/homepages/Sylvie_Gallet/homepage.htm>
  2579.  
  2580.   Cheers,
  2581.  
  2582.         - Sylvie
  2583.  
  2584.  
  2585. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2586. Post Message:   fractint@lists.xmission.com
  2587. Get Commands:   majordomo@lists.xmission.com "help"
  2588. Administrator:  twegner@phoenix.net
  2589. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2590.  
  2591.  
  2592. -------------------------------------------------------------------------------
  2593.  
  2594. From: "Pascal DUCLAUD-LACOSTE" <pascal.duclaud.lacoste@alphacentauri.be>
  2595. Subject: (fractint) Sylvie Gallet !!!!
  2596. Date: 14 Jun 1999 23:12:05 +0200
  2597.  
  2598. This is a multi-part message in MIME format.
  2599.  
  2600. ------=_NextPart_000_002A_01BEB6BB.519DFAC0
  2601. Content-Type: text/plain;
  2602.     charset="iso-8859-1"
  2603. Content-Transfer-Encoding: quoted-printable
  2604.  
  2605. Sylvie !!!=20
  2606.  
  2607. Mais comment faites - vous cela , !=20
  2608.  
  2609. Les images sont irr=E9elles et fascinantes .   Les fractales ont =
  2610. d=E9j=E0 un peu le gout du soufre mais quelle sorci=E8re prodigieuse =
  2611. =EAtes vous !!!
  2612.  
  2613.  
  2614. Unreal and fascinating !!!=20
  2615.  
  2616. Pascal
  2617.  
  2618.  
  2619.  
  2620.  
  2621. ------=_NextPart_000_002A_01BEB6BB.519DFAC0
  2622. Content-Type: text/html;
  2623.     charset="iso-8859-1"
  2624. Content-Transfer-Encoding: quoted-printable
  2625.  
  2626. <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
  2627. <HTML>
  2628. <HEAD>
  2629.  
  2630. <META content=3Dtext/html;charset=3Diso-8859-1 =
  2631. http-equiv=3DContent-Type>
  2632. <META content=3D'"MSHTML 4.72.3110.7"' name=3DGENERATOR>
  2633. </HEAD>
  2634. <BODY bgColor=3D#ffffff>
  2635. <DIV><FONT color=3D#000000 size=3D2>Sylvie !!! </FONT></DIV>
  2636. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2637. <DIV><FONT color=3D#000000 size=3D2>Mais comment faites - vous cela , !=20
  2638. </FONT></DIV>
  2639. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2640. <DIV><FONT color=3D#000000 size=3D2>Les images sont irréelles et =
  2641. fascinantes=20
  2642. .   Les fractales ont déjà un peu le gout du =
  2643. soufre mais=20
  2644. quelle sorcière prodigieuse êtes vous !!!</FONT></DIV>
  2645. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2646. <DIV> </DIV>
  2647. <DIV><FONT size=3D2>Unreal and fascinating !!! </FONT></DIV>
  2648. <DIV><FONT size=3D2></FONT> </DIV>
  2649. <DIV><FONT size=3D2>Pascal</FONT></DIV>
  2650. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2651. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV>
  2652. <DIV><FONT color=3D#000000 size=3D2></FONT> </DIV></BODY></HTML>
  2653.  
  2654. ------=_NextPart_000_002A_01BEB6BB.519DFAC0--
  2655.  
  2656.  
  2657. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2658. Post Message:   fractint@lists.xmission.com
  2659. Get Commands:   majordomo@lists.xmission.com "help"
  2660. Administrator:  twegner@phoenix.net
  2661. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2662.  
  2663.  
  2664. -------------------------------------------------------------------------------
  2665.  
  2666. From: "Jay Hill" <ehill1@san.rr.com>
  2667. Subject: Re: (fractint) Largest minibrot
  2668. Date: 14 Jun 1999 22:27:47 -0700
  2669.  
  2670. > From: Benno.Schmid@gmx.net
  2671. > Date: Tuesday, June 01, 1999 4:01 PM
  2672.  
  2673. > Sure. And it has the lowest period, too.
  2674. > Speaking of midgets: Jay, how did you get the coordinates for your midget
  2675. > and Misiuriewicz par files? I tried to calculate the roots with Newton's
  2676. > method, but found them only up to period 4 without errors (in Fractint and
  2677. > an own program). But for your p23 midgets, the polynomial would be of
  2678. > 4194303th order!
  2679.  
  2680. I use Newton's method, but not in the usual manner. So far the only limitation 
  2681. is the precision of the arithmetic I use - 80 bit floats available with Borland
  2682.  
  2683. compilers on Intel machines. With Newton's method I find all minibrots through 
  2684. period 15 and all but one complex pair of period 16. When the roots get closer 
  2685. than the resolution of the arithmetic, you are stuck.  So with period 23 I can
  2686. find 
  2687. a great many minibrots but the a 'small majority' will still go unfound. :-)
  2688.  
  2689. The easiest to find are those around the very outside edge of the filament
  2690. forest.
  2691. The hardest seem to be just to the negative side of the ... wait a second, if I
  2692.  
  2693. knew where the hardest ones are, I'd root them out and they would not be hard. 
  2694.  
  2695.  
  2696. The Newton's method applied to period 8  produces a very nice fractal image. 
  2697. I am debating entering it in the contest, under the heading of Specially Coded 
  2698. Fractals. Since I'm not a Windows progammer, I am stuck with 16 colors low 
  2699. resolution VGA graphics (640x480) from DOS. Oh, never mind, they are not 
  2700. having a Specially Coded Fractals catagory after all. 
  2701.  
  2702. :-(
  2703.  
  2704. Jay
  2705.  
  2706.  
  2707. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2708. Post Message:   fractint@lists.xmission.com
  2709. Get Commands:   majordomo@lists.xmission.com "help"
  2710. Administrator:  twegner@phoenix.net
  2711. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2712.  
  2713.  
  2714. -------------------------------------------------------------------------------
  2715.  
  2716. From: slack <jhansen@xmission.com>
  2717. Subject: (fractint) Testing
  2718. Date: 15 Jun 1999 11:07:53 -0600
  2719.  
  2720. This is a test.
  2721.  
  2722. -- 
  2723. Jason Hansen                                          jhansen@xmission.com
  2724.  
  2725. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2726. Post Message:   fractint@lists.xmission.com
  2727. Get Commands:   majordomo@lists.xmission.com "help"
  2728. Administrator:  twegner@phoenix.net
  2729. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2730.  
  2731.  
  2732. -------------------------------------------------------------------------------
  2733.  
  2734. From: "Tim Wegner" <twegner@phoenix.net>
  2735. Subject: (fractint) List glitch
  2736. Date: 17 Jun 1999 15:34:02 -0600
  2737.  
  2738. There was a problem with the fractint list the last few days, but it 
  2739. has now been fixed 
  2740.  
  2741. Tim Wegner
  2742.  
  2743. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2744. Post Message:   fractint@lists.xmission.com
  2745. Get Commands:   majordomo@lists.xmission.com "help"
  2746. Administrator:  twegner@phoenix.net
  2747. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2748.  
  2749.  
  2750. -------------------------------------------------------------------------------
  2751.  
  2752. From: Dimosthenis Baikos <baikosd@hotmail.com>
  2753. Subject: (fractint) Date: Sat, 19 Jun 1999 22:16:34 EEST
  2754. Date: 19 Jun 1999 13:17:19 -0600
  2755.  
  2756. Hi all,
  2757.  
  2758. My name is Dimosthenis Baikos. I am fractal and fractint newcomer. Could
  2759. anyone tell me how to send my first fractal to your lists
  2760. (fractint-digest@lists.xmission.com, fractint@lists.xmission.com):
  2761.  
  2762. I think I mail the .par and .frm (if any) files. Am I right?
  2763.  
  2764.  
  2765. Thank you very much for your help
  2766.  
  2767.  
  2768. ______________________________________________________
  2769. Get Your Private, Free Email at http://www.hotmail.com
  2770.  
  2771. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2772. Post Message:   fractint@lists.xmission.com
  2773. Get Commands:   majordomo@lists.xmission.com "help"
  2774. Administrator:  twegner@phoenix.net
  2775. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2776.  
  2777.  
  2778. -------------------------------------------------------------------------------
  2779.  
  2780. From: Dimosthenis Baikos <baikosd@hotmail.com>
  2781. Subject: (fractint) Date: Sat, 19 Jun 1999 22:16:34 EEST
  2782. Date: 19 Jun 1999 13:17:10 -0600
  2783.  
  2784. Hi all,
  2785.  
  2786. My name is Dimosthenis Baikos. I am fractal and fractint newcomer. Could
  2787. anyone tell me how to send my first fractal to your lists
  2788. (fractint-digest@lists.xmission.com, fractint@lists.xmission.com):
  2789.  
  2790. I think I mail the .par and .frm (if any) files. Am I right?
  2791.  
  2792.  
  2793. Thank you very much for your help
  2794.  
  2795.  
  2796. ______________________________________________________
  2797. Get Your Private, Free Email at http://www.hotmail.com
  2798.  
  2799. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2800. Post Message:   fractint@lists.xmission.com
  2801. Get Commands:   majordomo@lists.xmission.com "help"
  2802. Administrator:  twegner@phoenix.net
  2803. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2804.  
  2805.  
  2806. -------------------------------------------------------------------------------
  2807.  
  2808. From: Phil McRevis <legalize@xmission.com>
  2809. Subject: Re: (fractint) Date: Sat, 19 Jun 1999 22:16:34 EEST 
  2810. Date: 19 Jun 1999 19:23:53 -0600
  2811.  
  2812.  
  2813. In article <19990619191637.59875.qmail@hotmail.com>,
  2814.     Dimosthenis Baikos <baikosd@hotmail.com>  writes:
  2815.  
  2816. > [...] Could
  2817. > anyone tell me how to send my first fractal to your lists
  2818. > (fractint-digest@lists.xmission.com, fractint@lists.xmission.com):
  2819. > I think I mail the .par and .frm (if any) files. Am I right?
  2820.  
  2821. Yes, a couple of refinements on that idea: the list prefers the
  2822. .par/.frm be included as simple text, and not as an attachment.  You
  2823. should comment the .par/.frm with your name, email and copyright date
  2824. if you wrote it, or the author's name/email if it was written by
  2825. someone else.  You can make the .par with fractint if you don't
  2826. already have it as a separate saved .par.  You can also include a URL
  2827. to the image that the corresponds to the .par/.frm if you like.  Its
  2828. asked that you not post the image itself, but instead the definition,
  2829. but this much you already have figured out ;-).
  2830. --
  2831. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  2832.     ``Ain't it funny that they all fire the pistol,     
  2833.       at the wrong end of the race?''--PDBT     
  2834. legalize@xmission.com    <http://www.eden.com/~thewho>
  2835.  
  2836. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2837. Post Message:   fractint@lists.xmission.com
  2838. Get Commands:   majordomo@lists.xmission.com "help"
  2839. Administrator:  twegner@phoenix.net
  2840. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2841.  
  2842.  
  2843. -------------------------------------------------------------------------------
  2844.  
  2845. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  2846. Subject: Re: (fractint) Date: Sat, 19 Jun 1999 22:16:34 EEST 
  2847. Date: 20 Jun 1999 17:00:48 +1200
  2848.  
  2849. >
  2850. >In article <19990619191637.59875.qmail@hotmail.com>,
  2851. >    Dimosthenis Baikos <baikosd@hotmail.com>  writes:
  2852. >
  2853. >> [...] Could
  2854. >> anyone tell me how to send my first fractal to your lists
  2855. >> (fractint-digest@lists.xmission.com, fractint@lists.xmission.com):
  2856. >> 
  2857. >> I think I mail the .par and .frm (if any) files. Am I right?
  2858. >
  2859. >Yes, a couple of refinements on that idea: the list prefers the
  2860. >.par/.frm be included as simple text, and not as an attachment.  You
  2861. >should comment the .par/.frm with your name, email and copyright date
  2862. >if you wrote it, or the author's name/email if it was written by
  2863. >someone else.  You can make the .par with fractint if you don't
  2864. >already have it as a separate saved .par.  You can also include a URL
  2865. >to the image that the corresponds to the .par/.frm if you like.  Its
  2866. >asked that you not post the image itself, but instead the definition,
  2867. >but this much you already have figured out ;-).
  2868.  
  2869. An example of this process would be the following. Note that the "frm:"
  2870. that precedes the "HenonJul" formula name is there so that all three items
  2871. (Saturn, Uranus, and the formula HenonJul) can be cut-and-pasted into the
  2872. one .par file. If you wish to place the formula in a separate .frm file,
  2873. the "frm:" should be dropped.
  2874.  
  2875. Morgan L. Owens
  2876.  
  2877.  
  2878.  
  2879. Saturn             { ; Photo taken by the Cassini probe in 2006
  2880.                      ; Copyright (c) 1999 Morgan L. Owens
  2881.   reset=1960 type=formula formulafile=more.frm formulaname=HenonJul
  2882.   center-mag=0/-0.0500391/0.6666667/1/90 params=2/0.01/8/0 float=y
  2883.   maxiter=1023 inside=255 periodicity=0
  2884.   colors=000975<26>xn_<31>222000000<56>000111333<33>zzz<31>222000000<61>00\
  2885.   0111332543764
  2886.   }
  2887. Uranus             { ; Photo taken by some probe some time in the future.
  2888.                      ; Copyright (c) 1999 Morgan L. Owens
  2889.   reset=1960 type=formula formulafile=more.frm formulaname=HenonJul
  2890.   center-mag=0/0.125/0.75/1/-70 params=5/1e-005/8/0 float=y
  2891.   maxiter=1023 inside=255 potential=255/1000/0 periodicity=0 passes=b
  2892.   colors=000<18>448559558<8>667777888<26>EEEFFFFFFFFGFFH<12>IIUIIVIIU<5>KK\
  2893.   QKKPKKPKKP<27>SSTSSTSSTSSTSSTSSU<68>hhuiiviiu<16>kjpkjpjio<43>CFI000
  2894.   }
  2895.  
  2896. frm:HenonJul{;Based on Fractint's "Henon" type.
  2897. bailout=real(p2)
  2898. a=real(p1)
  2899. b=imag(p1)
  2900. z=pixel:
  2901. x=real(z)
  2902. z=1+imag(z)-a*sqr(x)+flip(b*x)
  2903. |z|<=bailout}
  2904.  
  2905.  
  2906.  
  2907. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2908. Post Message:   fractint@lists.xmission.com
  2909. Get Commands:   majordomo@lists.xmission.com "help"
  2910. Administrator:  twegner@phoenix.net
  2911. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2912.  
  2913.  
  2914. -------------------------------------------------------------------------------
  2915.  
  2916. From: "Mike and Linda Allison" <gumbycat@ix.netcom.com>
  2917. Subject: (fractint) Just testing
  2918. Date: 23 Jun 1999 22:10:51 -0700
  2919.  
  2920. Just testing!  Linda
  2921.  
  2922. http://www.fractalus.com/gumbycat/gallery1.html (New 05-27-99)
  2923. http://www.geocities.com/Paris/5519/gallery1.html (last update 02-27-99)
  2924. http://www.toptown.com/innercircle/gumbycat/index.html (last update
  2925. 04-30-99)
  2926.  
  2927. Recent Usenet postings:
  2928. http://www.fractalus.com/gumbycat/abpf.html (last update 05-02-99)
  2929.  
  2930. Copyright, all rights reserved:
  2931. http://www.fractalus.com/gumbycat/copyright.html
  2932.  
  2933.  
  2934.  
  2935. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2936. Post Message:   fractint@lists.xmission.com
  2937. Get Commands:   majordomo@lists.xmission.com "help"
  2938. Administrator:  twegner@phoenix.net
  2939. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2940.  
  2941.  
  2942. -------------------------------------------------------------------------------
  2943.  
  2944. From: kathy roth <kroth@well.com>
  2945. Subject: (fractint) new computer
  2946. Date: 25 Jun 1999 21:50:34 -0700
  2947.  
  2948. Hi, I am thinking of purchasing a new computer
  2949. and want to choose one that would be best for
  2950. running Ultrafractal and Fractint.  If you think
  2951. that this is not of general interest, please e-mail
  2952. me privately.
  2953. 1) Is it still important to get a Pentium chip?
  2954. 2) I followed the discussions about the video
  2955.     cards with some trepidation.  I understand that some of
  2956.     the people on the Ultrafractal list are unable to run
  2957.     Fractint.  I definitely want to continue to be able to run
  2958.     Fractint and some old DOS games.  What do you think
  2959.     the best video card is?   Should I buy a system with
  2960.     the video card I want or get the best system at the price and
  2961.     replace the video card?  I can download a new driver if needed
  2962.     but am a novice at this and have limited interest in fooling
  2963.     around with compatibility problems.
  2964. 3) What do you think the best way is to back up data.
  2965.     I have a Syquest Sparq and find it really irritating to
  2966.    use, was thinking of getting a built-in Zip Drive.
  2967.  
  2968. Any other suggestions are welcome. TIA- Kathy
  2969.  
  2970.  
  2971. Thanks for using Fractint, The Fractals and Fractint Discussion List
  2972. Post Message:   fractint@lists.xmission.com
  2973. Get Commands:   majordomo@lists.xmission.com "help"
  2974. Administrator:  twegner@phoenix.net
  2975. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  2976.  
  2977.  
  2978. -------------------------------------------------------------------------------
  2979.  
  2980. From: "Damien M. Jones" <dmj@fractalus.com>
  2981. Subject: Re: (fractint) new computer
  2982. Date: 26 Jun 1999 11:05:34 -0500
  2983.  
  2984. Kathy,
  2985.  
  2986.  - 1) Is it still important to get a Pentium chip?
  2987.  
  2988. Yes. Right now one of the best deals going is a Celeron processor, they are
  2989. cheap and very fast for fractals. AMD K6 still does not have the
  2990. floating-point performance which is crucial for fractal generation. The K7
  2991. may change that--maybe--but right now Pentium-II, -III, and Celerons are
  2992. good bets.
  2993.  
  2994. This is more important for UF than for FractInt at the moment, because UF
  2995. is more optimized for newer processors, but that will likely change with
  2996. the next release of FractInt.
  2997.  
  2998.  - I understand that some of the people on the Ultrafractal list are
  2999.  - unable to run Fractint.
  3000.  
  3001. Mainly because FractInt relies on the presence of VESA modes in newer cards
  3002. to access the higher resolutions. The very newest class of video cards tend
  3003. not to support VESA modes any more, because they're only important for DOS
  3004. apps, which are falling by the wayside. However, your games will likely
  3005. still run because they typically use a 640x480 mode, which is far more
  3006. widely supported than the higher-resolution modes.
  3007.  
  3008.  - 3) What do you think the best way is to back up data.
  3009.  -     I have a Syquest Sparq and find it really irritating to
  3010.  -    use, was thinking of getting a built-in Zip Drive.
  3011.  
  3012. Well, CDs aren't the most convenient thing to use for backing up data, but
  3013. the discs are fairly durable, they're fairly roomy, and they're dirt-cheap.
  3014. Even CD-RW discs are fairly cheap.
  3015.  
  3016. I have a ZIP drive (on several systems, in fact) and to be honest, it
  3017. doesn't take very many big fractals to fill them up. Especially the kind of
  3018. detailed fractals I like, which don't compress very well.
  3019.  
  3020. Damien M. Jones   \\
  3021. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  3022.                     \\  http://www.fractalus.com/
  3023.  
  3024. Please do not post my e-mail address on a web site or
  3025. in a newsgroup.  Thank you.
  3026.  
  3027. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3028. Post Message:   fractint@lists.xmission.com
  3029. Get Commands:   majordomo@lists.xmission.com "help"
  3030. Administrator:  twegner@phoenix.net
  3031. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3032.  
  3033.  
  3034. -------------------------------------------------------------------------------
  3035.  
  3036. From: David Kosokar <dkosokar@mn.mediaone.net>
  3037. Subject: (fractint) 3d Mandelbrot?
  3038. Date: 26 Jun 1999 12:21:21 -0500
  3039.  
  3040. Hello all! 
  3041.  
  3042. Do any of you know where I could get a program (preferably a ray tracer)
  3043. that will make 3d pictures of the Mandelbrot set (both hypercomplex and
  3044. quaternion)?
  3045.  
  3046. What I mean is, suppose you took the original Mandel set, and cut out
  3047. just the black part. Now you rotate it along the Real axis, and create a
  3048. 3d shape from this (this is called latheing in the raytracers I've
  3049. seen). This is the actual shape of the Quat fractal in three dimensions,
  3050. you can see this as you vary the parameters of the quat fractal.
  3051.  
  3052. If you have written anything like this, or know where I can find it,
  3053. please let me know!! TIA!
  3054.  
  3055. Dave
  3056.  
  3057. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3058. Post Message:   fractint@lists.xmission.com
  3059. Get Commands:   majordomo@lists.xmission.com "help"
  3060. Administrator:  twegner@phoenix.net
  3061. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3062.  
  3063.  
  3064. -------------------------------------------------------------------------------
  3065.  
  3066. From: "Terry" <krietor@pacifier.com>
  3067. Subject: (fractint) House with Bomb Shelter and other ideas
  3068. Date: 26 Jun 1999 12:21:37 -0700
  3069.  
  3070. Here is the web page for the bomb shelter house:
  3071.  
  3072. http://www.wooly.com/w1/160
  3073.  
  3074. Aloha. 
  3075.                  Terry James Erickson , krietor@stones.com
  3076.                  http://www.pacifier.com/~krietor  ICQ  # 20903556
  3077.                  Earth Embassy Foundation
  3078.                  http://www.pacifier.com/~peri
  3079.  
  3080.  
  3081. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3082. Post Message:   fractint@lists.xmission.com
  3083. Get Commands:   majordomo@lists.xmission.com "help"
  3084. Administrator:  twegner@phoenix.net
  3085. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3086.  
  3087.  
  3088. -------------------------------------------------------------------------------
  3089.  
  3090. From: "Angela Wilczynski" <wizzle@beachnet.com>
  3091. Subject: Re: (fractint) new computer
  3092. Date: 26 Jun 1999 14:34:00 -0700
  3093.  
  3094. Kathy...
  3095.  
  3096. Many of the questions you asked went through my mind when I got my new puter last
  3097. year.  
  3098.  
  3099. 1.  Based on the feedback from this group, I got a Matrox Millenium card and am
  3100. delighted with it. It not only runs fractint beautifully, but drives my 19" monitor
  3101. to perfection. 
  3102. 2.  As far as getting the best system/price, I'd suggest chatting with the folks at
  3103. Micron.  My first puter was a Micron and their support is outstanding and their
  3104. prices are most competitive.  They may very well be able to accomodate the video card
  3105. swap for you at a nominal price.  My son put together my current system and I know I
  3106. paid a premium for not going Micron. www.micron.com
  3107. 3.  While there are faster/bigger storage media than zip drives these days, I like
  3108. mine.  I have an internal zip drive hooked to an scsi port on the motherboard.  Data
  3109. transfer is quite fast enough for me.  The advantage of a zip drive is that I can
  3110. take the zip disk to work where we have zip drives as a standard. If you buy a Micron
  3111. system a zip drive will be included. 
  3112.  
  3113. take care
  3114.  
  3115. Angela aka wizzle
  3116.  
  3117. kathy roth wrote:
  3118. > Hi, I am thinking of purchasing a new computer
  3119. > and want to choose one that would be best for
  3120. > running Ultrafractal and Fractint.  If you think
  3121. > that this is not of general interest, please e-mail
  3122. > me privately.
  3123. > 1) Is it still important to get a Pentium chip?
  3124. > 2) I followed the discussions about the video
  3125. >     cards with some trepidation.  I understand that some of
  3126. >     the people on the Ultrafractal list are unable to run
  3127. >     Fractint.  I definitely want to continue to be able to run
  3128. >     Fractint and some old DOS games.  What do you think
  3129. >     the best video card is?   Should I buy a system with
  3130. >     the video card I want or get the best system at the price and
  3131. >     replace the video card?  I can download a new driver if needed
  3132. >     but am a novice at this and have limited interest in fooling
  3133. >     around with compatibility problems.
  3134. > 3) What do you think the best way is to back up data.
  3135. >     I have a Syquest Sparq and find it really irritating to
  3136. >    use, was thinking of getting a built-in Zip Drive.
  3137. > Any other suggestions are welcome. TIA- Kathy
  3138. > --------------------------------------------------------------
  3139. > Thanks for using Fractint, The Fractals and Fractint Discussion List
  3140. > Post Message:   fractint@lists.xmission.com
  3141. > Get Commands:   majordomo@lists.xmission.com "help"
  3142. > Administrator:  twegner@phoenix.net
  3143. > Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3144.  
  3145. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3146. Post Message:   fractint@lists.xmission.com
  3147. Get Commands:   majordomo@lists.xmission.com "help"
  3148. Administrator:  twegner@phoenix.net
  3149. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3150.  
  3151.  
  3152. -------------------------------------------------------------------------------
  3153.  
  3154. From: "Terry" <krietor@pacifier.com>
  3155. Subject: (fractint) Fractint on AMD
  3156. Date: 26 Jun 1999 16:06:44 -0700
  3157.  
  3158. My machine is an AMD 5x86.
  3159. Fractint seems to perform ok as far as I can tell. It's lots of fun.
  3160. What will a Pentium chip do better?
  3161. I have read statements from people on this list to the effect that the
  3162. floating point capability of the Intel chips is a great advantage in running
  3163. Fractint.
  3164. I wonder what I am missing out on. Since I have been leaning towards the AMD
  3165. K-6 for my new computer, and I really like using Fractint, what's the
  3166. advantage that the Pentium and Celeron chips have?
  3167.  
  3168. Also,  I am experiencing a little difficulty with Fractint. Let me try to
  3169. describe.
  3170. I run Fractint and start the color-cycling.
  3171. I hit pause, or save, and it works, but when I end up at the main menu, and
  3172. select "return to fractal," or whatever,  the program seems to freeze up. I
  3173. have to start over. I'm not a very experienced user (of Fractint or Windows
  3174. 95) but I am a very quick learner.
  3175. I'm not sure I gave enough information for someone to solve my problem on
  3176. this second question,  but I'm sure someone will have an answer for the
  3177. first.
  3178. thank you very much.
  3179.                  Terry James Erickson , krietor@stones.com
  3180.                  http://www.pacifier.com/~krietor
  3181.                  Earth Embassy Foundation
  3182.                  http://www.pacifier.com/~peri
  3183. PS   I believe I accidentally emailed a URL for a web page about a house
  3184. with a bomb shelter for sale. Since it has not much to do with fractal art,
  3185. I apologize for the mistake.
  3186.  
  3187.  
  3188. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3189. Post Message:   fractint@lists.xmission.com
  3190. Get Commands:   majordomo@lists.xmission.com "help"
  3191. Administrator:  twegner@phoenix.net
  3192. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3193.  
  3194.  
  3195. -------------------------------------------------------------------------------
  3196.  
  3197. From: "Damien M. Jones" <dmj@fractalus.com>
  3198. Subject: Re: (fractint) Fractint on AMD
  3199. Date: 26 Jun 1999 18:40:08 -0500
  3200.  
  3201. Terry,
  3202.  
  3203.  - My machine is an AMD 5x86.
  3204.  - Fractint seems to perform ok as far as I can tell. It's lots of fun.
  3205.  - What will a Pentium chip do better?
  3206.  
  3207. The Pentium (and -II, and -III) FPU typically performs basic arithmetic
  3208. operations in one cycle, instead of two to four. Furthermore, the processor
  3209. can move floating-point values between registers in parallel with those
  3210. arithmetic operations. This makes for enormously improved throughput.
  3211. Benchmarks I've run show that the Pentium is 2-3 times faster at sustained
  3212. floating-point operations than an AMD K6, at the same clock speed. This is
  3213. the case even when both processors run code optimized specifically for them.
  3214.  
  3215.  - I wonder what I am missing out on.
  3216.  
  3217. Only speed. And for most things, the AMD processors are just fine. Fractals
  3218. happen to be a unique burden for a processor, though, and Intel x86
  3219. processors have a better FPU.
  3220.  
  3221. Damien M. Jones   \\
  3222. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  3223.                     \\  http://www.fractalus.com/
  3224.  
  3225. Please do not post my e-mail address on a web site or
  3226. in a newsgroup.  Thank you.
  3227.  
  3228. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3229. Post Message:   fractint@lists.xmission.com
  3230. Get Commands:   majordomo@lists.xmission.com "help"
  3231. Administrator:  twegner@phoenix.net
  3232. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3233.  
  3234.  
  3235. -------------------------------------------------------------------------------
  3236.  
  3237. From: davides <davides@pipeline.com>
  3238. Subject: (fractint) 3 julia pars
  3239. Date: 26 Jun 1999 21:18:22 -0400
  3240.  
  3241. Three julias from the default Mandelbrot.
  3242.  
  3243. New_Dimension300   { ;  (c) David Shanholtzer Jun 26, 1999 t=0:00:17.47
  3244.                      ;  P200 MMX 1024x768
  3245.                      ; Another julia
  3246.   reset=1960 type=julia passes=t
  3247.   center-mag=-2.77556e-016/2.22045e-016/0.8130081/1/0/42.197
  3248.   params=0.3699901320299772/0.3148632294132985 float=y maxiter=7500
  3249.   inside=maxiter
  3250.   colors=000<26>005K0K<34>lbumdwmdw<38>H3V000F1TE0SA20<10>yhW<22>A20111222\
  3251.   UUY<29>xxvzzwyyv000<20>111MC7<6>yhW<14>A20000<31>0bi orbitdelay=2
  3252.   }
  3253.  
  3254.  
  3255. New_Dimension303   { ;  (c) David Shanholtzer Jun 26, 1999 t=  0:05:36.14
  3256.                      ;  P200 MMX 1024x768
  3257.                      ; A dusty rose julia spiral
  3258.   reset=1960 type=julia passes=t
  3259.   center-mag=0.163363/0.484302/5.978001/1/0/42.197
  3260.   params=0.3699901320299772/0.3148632294132985 float=y maxiter=7500
  3261.   inside=maxiter decomp=200
  3262.   colors=000YC`<5>lLq<30>G1IE0GF0G<29>jAglBhlBh<31>H1J71DF1HE0G<2>G0IH1JJ1\
  3263.   K<23>mAmK00<39>w65w65v65<68>E0G<6>VAZ orbitdelay=2
  3264.   }
  3265.  
  3266. New_Dimension304   { ;  (c) David Shanholtzer Jun 26, 1999 t=  0:06:47.11
  3267.                      ;  P200 MMX 1024x768
  3268.   reset=1960 type=julia passes=t
  3269.   center-mag=0.210974/0.415816/6.441811/1/0/42.196
  3270.   params=0.3699901320299772/0.3148632294132985 float=y maxiter=7500
  3271.   inside=maxiter decomp=200
  3272.   colors=000YC`<5>lLq<30>G1IE0GF0G<29>jAglBhlBh<31>H1J71DF1HE0G<2>G0IH1JJ1\
  3273.   K<23>mAmK00<39>w65w65v65<68>E0G<6>VAZ
  3274.   }
  3275.  
  3276.  
  3277. davides@pipeline.com
  3278. ds30@umail.umd.edu
  3279. Back up my hard drive?
  3280. How do I put it in reverse?
  3281.  
  3282. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3283. Post Message:   fractint@lists.xmission.com
  3284. Get Commands:   majordomo@lists.xmission.com "help"
  3285. Administrator:  twegner@phoenix.net
  3286. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3287.  
  3288.  
  3289. -------------------------------------------------------------------------------
  3290.  
  3291. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  3292. Subject: Re: (fractint) 3d Mandelbrot?
  3293. Date: 27 Jun 1999 14:40:35 +1200
  3294.  
  3295. At 12:21 26/06/99 -0500, you wrote:
  3296. >Hello all! 
  3297. >
  3298. >Do any of you know where I could get a program (preferably a ray tracer)
  3299. >that will make 3d pictures of the Mandelbrot set (both hypercomplex and
  3300. >quaternion)?
  3301. >
  3302. Easy, POV-Ray!
  3303.  
  3304. http://www.povray.org/
  3305.  
  3306.  
  3307. > This is the actual shape of the Quat fractal in three dimensions,
  3308. >
  3309. Actually, the Quat fractal is four-dimensional - the three-dimensional
  3310. appearances are only a tiny slice of the whole thing.
  3311.  
  3312. But then, in POV-Ray you can write animations and vary the parameters over
  3313. time.
  3314.  
  3315. Morgan L. Owens
  3316.  
  3317.  
  3318.  
  3319. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3320. Post Message:   fractint@lists.xmission.com
  3321. Get Commands:   majordomo@lists.xmission.com "help"
  3322. Administrator:  twegner@phoenix.net
  3323. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3324.  
  3325.  
  3326. -------------------------------------------------------------------------------
  3327.  
  3328. From: Ken Childress <icent@best.com>
  3329. Subject: Re: (fractint) Fractint on AMD
  3330. Date: 26 Jun 1999 20:38:01 -0700
  3331.  
  3332.  
  3333. Terry,
  3334.  
  3335. >My machine is an AMD 5x86.
  3336. >Fractint seems to perform ok as far as I can tell. It's lots of fun.
  3337. >What will a Pentium chip do better?
  3338. >I have read statements from people on this list to the effect that the
  3339. >floating point capability of the Intel chips is a great advantage in running
  3340. >Fractint.
  3341. >I wonder what I am missing out on. Since I have been leaning towards the AMD
  3342. >K-6 for my new computer, and I really like using Fractint, what's the
  3343. >advantage that the Pentium and Celeron chips have?
  3344.  
  3345. I had an AMD K6 166 MHz.  I swapped it for a Pentium MMX 233 MHz.  I
  3346. got about a 2.5 increase in performace by the swap.  From my experience
  3347. and what I've read, avoid non-Intel chips if you are concerned about
  3348. floating point performance.  The latest AMD chip may be an exception,
  3349. but I'm not up on that one.
  3350.  
  3351. The Celeron is a good bargin.  With today's prices, a Celeron or a
  3352. Pentium II should be had for a pretty good bargin.
  3353.  
  3354.  
  3355.  
  3356. Ken...
  3357.  
  3358.  
  3359.  
  3360. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3361. Post Message:   fractint@lists.xmission.com
  3362. Get Commands:   majordomo@lists.xmission.com "help"
  3363. Administrator:  twegner@phoenix.net
  3364. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3365.  
  3366.  
  3367. -------------------------------------------------------------------------------
  3368.  
  3369. From: David Kosokar <dkosokar@mn.mediaone.net>
  3370. Subject: Re: (fractint) 3d Mandelbrot?
  3371. Date: 27 Jun 1999 00:36:38 -0500
  3372.  
  3373. Sorry about the misconception of the quat fractal, I was aware of it's
  3374. 4d nature, but the "solid Mandelbrot" is what I'm interested in.
  3375.  
  3376. I've used Pov-ray for years, and while I love it, the only fractals it
  3377. does are juila sets, not the Mandelbrot set formulas. Is there some way
  3378. to modify it (without learning c++) to do what I'm talking about?
  3379.  
  3380. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3381. Post Message:   fractint@lists.xmission.com
  3382. Get Commands:   majordomo@lists.xmission.com "help"
  3383. Administrator:  twegner@phoenix.net
  3384. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3385.  
  3386.  
  3387. -------------------------------------------------------------------------------
  3388.  
  3389. From: "cm.davies" <cm.davies@amorphous.freeserve.co.uk>
  3390. Subject: (fractint) Fractint and capturing colour cycling
  3391. Date: 27 Jun 1999 20:14:08 +0100
  3392.  
  3393. This is a multi-part message in MIME format.
  3394.  
  3395. ------=_NextPart_000_0001_01BEC0D9.9D16B5A0
  3396. Content-Type: text/plain;
  3397.     charset="iso-8859-1"
  3398. Content-Transfer-Encoding: 7bit
  3399.  
  3400. Hi,  I wish to capture or output some of the colour cycling features of
  3401. Fractinit so I can use the animations or avi's in some larger graphic
  3402. arrangements that involve other clips from other programs.  Any ideas anyone
  3403.  
  3404. Chris Davies
  3405. 07971 911265
  3406.  
  3407.  
  3408.  
  3409. ------=_NextPart_000_0001_01BEC0D9.9D16B5A0
  3410. Content-Type: text/html;
  3411.     charset="iso-8859-1"
  3412. Content-Transfer-Encoding: quoted-printable
  3413.  
  3414. <!DOCTYPE HTML PUBLIC "-//W3C//DTD W3 HTML//EN">
  3415. <HTML>
  3416. <HEAD>
  3417.  
  3418. <META content=3D"text/html; charset=3Diso-8859-1" =
  3419. http-equiv=3DContent-Type>
  3420. <META content=3D'"MSHTML 4.72.3110.7"' name=3DGENERATOR>
  3421. </HEAD>
  3422. <BODY bgColor=3D#ffffff>
  3423. <DIV><SPAN class=3D160201017-26061999><FONT color=3D#000000 =
  3424. face=3DTahoma=20
  3425. size=3D3>Hi,  I wish to capture or output some of the colour =
  3426. cycling features=20
  3427. of Fractinit so I can use the animations or avi's in some larger graphic =
  3428.  
  3429. arrangements that involve other clips from other programs.  Any =
  3430. ideas=20
  3431. anyone</FONT></SPAN></DIV>
  3432. <DIV> </DIV>
  3433. <DIV><FONT color=3D#000000 face=3D""><FONT size=3D3><FONT=20
  3434. face=3D"Photina Casual Black">Chris Davies</FONT></FONT></FONT><FONT=20
  3435. face=3D"Photina Casual Black"><FONT size=3D3></FONT></FONT></DIV>
  3436. <DIV><FONT color=3D#000000 face=3DArial size=3D2><FONT face=3D"Photina =
  3437. Casual Black"=20
  3438. size=3D3>07971 911265</FONT></FONT></DIV>
  3439. <DIV align=3Dcenter> </DIV>
  3440. <DIV> </DIV></BODY></HTML>
  3441.  
  3442. ------=_NextPart_000_0001_01BEC0D9.9D16B5A0--
  3443.  
  3444.  
  3445. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3446. Post Message:   fractint@lists.xmission.com
  3447. Get Commands:   majordomo@lists.xmission.com "help"
  3448. Administrator:  twegner@phoenix.net
  3449. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3450.  
  3451.  
  3452. -------------------------------------------------------------------------------
  3453.  
  3454. From: "Mike and Linda Allison" <gumbycat@worldnet.att.net>
  3455. Subject: (fractint) Off Topic: New EMail Address
  3456. Date: 27 Jun 1999 18:25:18 -0700
  3457.  
  3458. Gumbycat is leaving Netcom.  Our new email address is:
  3459.  
  3460. gumbycat@worldnet.att.net
  3461.  
  3462. Thanks, all!
  3463. Mike and Linda A
  3464.  
  3465.  
  3466. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3467. Post Message:   fractint@lists.xmission.com
  3468. Get Commands:   majordomo@lists.xmission.com "help"
  3469. Administrator:  twegner@phoenix.net
  3470. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3471.  
  3472.  
  3473. -------------------------------------------------------------------------------
  3474.  
  3475. From: Phil McRevis <legalize@xmission.com>
  3476. Subject: Re: (fractint) Fractint and capturing colour cycling 
  3477. Date: 28 Jun 1999 00:57:02 -0600
  3478.  
  3479.  
  3480. [Just a short note first: in the future, please just send your message
  3481. as plain text; no need to duplicate it with a second version in HTML
  3482. which lots of people on this list won't be able to receive anyway
  3483. because they don't use MIME capable mailers.]
  3484.  
  3485. In article <000001bec0d1$3b524da0$943b883e@cm.davies>,
  3486.     "cm.davies" <cm.davies@amorphous.freeserve.co.uk>  writes:
  3487.  
  3488. > Hi,  I wish to capture or output some of the colour cycling features of
  3489. > Fractinit so I can use the animations or avi's in some larger graphic
  3490. > arrangements that involve other clips from other programs.  Any ideas anyone
  3491.  
  3492. I think you can do this sort of animation (color cycling) with some of
  3493. the titling/video editing packages, but I'm not familiar with them.
  3494. You might check out web pages for video editing packages like adobe
  3495. premiere.
  3496. --
  3497. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  3498.     ``Ain't it funny that they all fire the pistol,     
  3499.       at the wrong end of the race?''--PDBT     
  3500. legalize@xmission.com    <http://www.eden.com/~thewho>
  3501.  
  3502. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3503. Post Message:   fractint@lists.xmission.com
  3504. Get Commands:   majordomo@lists.xmission.com "help"
  3505. Administrator:  twegner@phoenix.net
  3506. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3507.  
  3508.  
  3509. -------------------------------------------------------------------------------
  3510.  
  3511. From: Phil McRevis <legalize@xmission.com>
  3512. Subject: Re: (fractint) 3d Mandelbrot? 
  3513. Date: 28 Jun 1999 00:59:34 -0600
  3514.  
  3515.  
  3516. In article <37750C11.442EE3D5@mn.mediaone.net>,
  3517.     David Kosokar <dkosokar@mn.mediaone.net>  writes:
  3518.  
  3519. > What I mean is, suppose you took the original Mandel set, and cut out
  3520. > just the black part. Now you rotate it along the Real axis, and create a
  3521. > 3d shape from this (this is called latheing in the raytracers I've
  3522. > seen).
  3523.  
  3524. Let me see if I understand what you're asking... you want to make what
  3525. is essentially a surface of revolution with the profile determined by
  3526. the M-set?  Since M is symmetric around the real line, this is
  3527. reasonable.  You could try rendering M as a bitmap and then generating
  3528. a point list from the outline of the image, using the point list to
  3529. define a polyline profile which is in turn used to define a surface of
  3530. revolution.  I'm not up on what raytracers support polyline
  3531. descriptions of such surfaces, so I can't recommend a particular
  3532. package.
  3533. --
  3534. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  3535.     ``Ain't it funny that they all fire the pistol,     
  3536.       at the wrong end of the race?''--PDBT     
  3537. legalize@xmission.com    <http://www.eden.com/~thewho>
  3538.  
  3539. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3540. Post Message:   fractint@lists.xmission.com
  3541. Get Commands:   majordomo@lists.xmission.com "help"
  3542. Administrator:  twegner@phoenix.net
  3543. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3544.  
  3545.  
  3546. -------------------------------------------------------------------------------
  3547.  
  3548. From: Phil McRevis <legalize@xmission.com>
  3549. Subject: Re: (fractint) new computer 
  3550. Date: 28 Jun 1999 01:03:19 -0600
  3551.  
  3552.  
  3553. In article <37745C19.D03C3E47@well.com>,
  3554.     kathy roth <kroth@well.com>  writes:
  3555.  
  3556. > 3) What do you think the best way is to back up data.
  3557. >     I have a Syquest Sparq and find it really irritating to
  3558. >    use, was thinking of getting a built-in Zip Drive.
  3559.  
  3560. Backup is a hard question to answer.  Since most people don't buy
  3561. decent backup peripherals, they haven't yet achieved the same economy
  3562. of scale that disk drives have.  A zip drive isn't bad for backup up
  3563. text files and things like that, but as Damien pointed out a few fat
  3564. fractals will fill it up.  Are you planning on backing up your entire
  3565. hard drive?  HD space is incredibly cheap right now, so you can end up
  3566. with a huge backup task if you plan on doing full backups and
  3567. incremental backups on a schedule.  (If you consider everything on the
  3568. HD volatile and only backup select files, then a ZIP is fine.)  For
  3569. the larger (> 2-3 GB) drives, a ZIP requires too many disks to backup
  3570. the entire thing, even with compression.  A JAZ drive is getting
  3571. closer, but tape seems to be the only thing that can do it
  3572. conveniently.  Do you want to babysit the machine during a full
  3573. backup waiting around to feed it new media?  A tape drive will let you
  3574. put the media in the drive and start the backup and leave it alone
  3575. until it completes.  An interesting alternative that's becoming viable
  3576. with faster net connections is contracting for online archival of data
  3577. for a monthly fee.  PC magazine had an article about these within the
  3578. last year or so, I believe.
  3579. --
  3580. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  3581.     ``Ain't it funny that they all fire the pistol,     
  3582.       at the wrong end of the race?''--PDBT     
  3583. legalize@xmission.com    <http://www.eden.com/~thewho>
  3584.  
  3585. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3586. Post Message:   fractint@lists.xmission.com
  3587. Get Commands:   majordomo@lists.xmission.com "help"
  3588. Administrator:  twegner@phoenix.net
  3589. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3590.  
  3591.  
  3592. -------------------------------------------------------------------------------
  3593.  
  3594. From: "Dave Hershey (Volt Computer)" <a-davehe@microsoft.com>
  3595. Subject: RE: (fractint) new computer 
  3596. Date: 28 Jun 1999 10:55:17 -0700
  3597.  
  3598. Networking is the approach I use here at work.  If I was getting a new
  3599. machine and I wanted a good quantity of data from the old machine on the new
  3600. one, I'd probably network the two machines together on a peer-to-peer and
  3601. simply copy down the files from a share on the old machine.
  3602.  
  3603. --Dave.
  3604.  
  3605.  
  3606. -----Original Message-----
  3607. Sent: Monday, June 28, 1999 12:03 AM
  3608.  
  3609.  
  3610.  
  3611. In article <37745C19.D03C3E47@well.com>,
  3612.     kathy roth <kroth@well.com>  writes:
  3613.  
  3614. > 3) What do you think the best way is to back up data.
  3615. >     I have a Syquest Sparq and find it really irritating to
  3616. >    use, was thinking of getting a built-in Zip Drive.
  3617.  
  3618. Backup is a hard question to answer.  Since most people don't buy
  3619. decent backup peripherals, they haven't yet achieved the same economy
  3620. of scale that disk drives have.  A zip drive isn't bad for backup up
  3621. text files and things like that, but as Damien pointed out a few fat
  3622. fractals will fill it up.  Are you planning on backing up your entire
  3623. hard drive?  HD space is incredibly cheap right now, so you can end up
  3624. with a huge backup task if you plan on doing full backups and
  3625. incremental backups on a schedule.  (If you consider everything on the
  3626. HD volatile and only backup select files, then a ZIP is fine.)  For
  3627. the larger (> 2-3 GB) drives, a ZIP requires too many disks to backup
  3628. the entire thing, even with compression.  A JAZ drive is getting
  3629. closer, but tape seems to be the only thing that can do it
  3630. conveniently.  Do you want to babysit the machine during a full
  3631. backup waiting around to feed it new media?  A tape drive will let you
  3632. put the media in the drive and start the backup and leave it alone
  3633. until it completes.  An interesting alternative that's becoming viable
  3634. with faster net connections is contracting for online archival of data
  3635. for a monthly fee.  PC magazine had an article about these within the
  3636. last year or so, I believe.
  3637. --
  3638. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  3639.     ``Ain't it funny that they all fire the pistol,     
  3640.       at the wrong end of the race?''--PDBT     
  3641. legalize@xmission.com    <http://www.eden.com/~thewho>
  3642.  
  3643. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3644. Post Message:   fractint@lists.xmission.com
  3645. Get Commands:   majordomo@lists.xmission.com "help"
  3646. Administrator:  twegner@phoenix.net
  3647. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3648.  
  3649. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3650. Post Message:   fractint@lists.xmission.com
  3651. Get Commands:   majordomo@lists.xmission.com "help"
  3652. Administrator:  twegner@phoenix.net
  3653. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3654.  
  3655.  
  3656. -------------------------------------------------------------------------------
  3657.  
  3658. From: David Kosokar <dkosokar@mn.mediaone.net>
  3659. Subject: Re: (fractint) 3d Mandelbrot?
  3660. Date: 28 Jun 1999 17:39:31 -0500
  3661.  
  3662. Well, the example given was just to convey the shape that I am
  3663. interested in. I don't really want to create the shape from the outline
  3664. of a processed image. I'd like to use a function like the julia fractal
  3665. in Pov-ray, which does the analogous thing with julia sets. I would like
  3666. to give it a parameter (or 2 or 3) and have it give me the shape,
  3667. rendered and shaded. Anyone out there know of anything like that?
  3668.  
  3669. I apologize if this is off topic. I just thought you folks would have
  3670. more exposure to things of this nature.
  3671.  
  3672. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3673. Post Message:   fractint@lists.xmission.com
  3674. Get Commands:   majordomo@lists.xmission.com "help"
  3675. Administrator:  twegner@phoenix.net
  3676. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3677.  
  3678.  
  3679. -------------------------------------------------------------------------------
  3680.  
  3681. From: Dimosthenis Baikos <baikosd@hotmail.com>
  3682. Subject: (fractint) Multifractals ?
  3683. Date: 29 Jun 1999 01:56:31 EEST
  3684.  
  3685. Hi all,
  3686.  
  3687. Have anyone heard the term "multifractal"? (I have no idea what this might 
  3688. be).
  3689.  
  3690. If anyone is interested on conferences on nonlinear dynamical systems and 
  3691. chaos (fractals are considered as well), here is an URL:
  3692.  
  3693. http://www.chaos-schools.gr/
  3694.  
  3695. Unfortunately this is out of date. However this school/conference is 
  3696. organized once per year, so you coud register next year (if you wish)! ( 
  3697. :-)) )
  3698.  
  3699. Dimosthenis Baikos
  3700.  
  3701.  
  3702. ______________________________________________________
  3703. Get Your Private, Free Email at http://www.hotmail.com
  3704.  
  3705. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3706. Post Message:   fractint@lists.xmission.com
  3707. Get Commands:   majordomo@lists.xmission.com "help"
  3708. Administrator:  twegner@phoenix.net
  3709. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3710.  
  3711.  
  3712. -------------------------------------------------------------------------------
  3713.  
  3714. From: Dimosthenis Baikos <baikosd@hotmail.com>
  3715. Subject: (fractint) Multifractals ?
  3716. Date: 29 Jun 1999 01:56:31 EEST
  3717.  
  3718. Hi all,
  3719.  
  3720. Have anyone heard the term "multifractal"? (I have no idea what this might 
  3721. be).
  3722.  
  3723. If anyone is interested on conferences on nonlinear dynamical systems and 
  3724. chaos (fractals are considered as well), here is an URL:
  3725.  
  3726. http://www.chaos-schools.gr/
  3727.  
  3728. Unfortunately this is out of date. However this school/conference is 
  3729. organized once per year, so you coud register next year (if you wish)! ( 
  3730. :-)) )
  3731.  
  3732. Dimosthenis Baikos
  3733.  
  3734.  
  3735. ______________________________________________________
  3736. Get Your Private, Free Email at http://www.hotmail.com
  3737.  
  3738. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3739. Post Message:   fractint@lists.xmission.com
  3740. Get Commands:   majordomo@lists.xmission.com "help"
  3741. Administrator:  twegner@phoenix.net
  3742. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3743.  
  3744.  
  3745. -------------------------------------------------------------------------------
  3746.  
  3747. From: "Phil DiGiorgi" <phild@iinc.com>
  3748. Subject: Re: (fractint) new computer
  3749. Date: 28 Jun 1999 19:16:38 -0400
  3750.  
  3751. Hi Kathy,
  3752.  
  3753. I just did a processor and motherboard upgrade, going from a K6-233 to a
  3754. PIII-450.   The difference is amazing.   Generation times in Fractint are
  3755. about 2.5 times faster, while Ultrafractal has speeded up by more than _4
  3756. times(!)_ in many cases.   I think going from 64m to 256m of PC100 ram had
  3757. alot to do with that, also.
  3758.  
  3759. For video, I think you are safe with either a Matrox Millenium card or any of
  3760. the cards based on the Riva TNT chip.   These are very popular and have Vesa
  3761. support built in.   I use a Viper 550, and it works great for me.
  3762.  
  3763. For backups, I use a second hard drive and a "drive image" program.   There
  3764. are some disadvantages to this, but it is fast, fast, fast, and the program I
  3765. am using (from Powerquest) allows you to restore individual files as well as
  3766. whole partitions.   It also supports spanning Zip or Jaz disks.
  3767.  
  3768. Good luck,
  3769. Phil D.
  3770.  
  3771.  
  3772. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3773. Post Message:   fractint@lists.xmission.com
  3774. Get Commands:   majordomo@lists.xmission.com "help"
  3775. Administrator:  twegner@phoenix.net
  3776. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3777.  
  3778.  
  3779. -------------------------------------------------------------------------------
  3780.  
  3781. From: Phil McRevis <legalize@xmission.com>
  3782. Subject: Re: (fractint) 3d Mandelbrot? 
  3783. Date: 28 Jun 1999 17:23:02 -0600
  3784.  
  3785.  
  3786. In article <3777F9A3.B90E5905@mn.mediaone.net>,
  3787.     David Kosokar <dkosokar@mn.mediaone.net>  writes:
  3788.  
  3789. > [...] I would like
  3790. > to give it a parameter (or 2 or 3) and have it give me the shape,
  3791. > rendered and shaded. Anyone out there know of anything like that?
  3792.  
  3793. Yep, I know what you mean.  Having the primitive built into the ray
  3794. tracer would be best.  However, if that isn't available you have the
  3795. choice of programming something that does it, or using the hack I
  3796. described ;-).
  3797. --
  3798. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  3799.     ``Ain't it funny that they all fire the pistol,     
  3800.       at the wrong end of the race?''--PDBT     
  3801. legalize@xmission.com    <http://www.eden.com/~thewho>
  3802.  
  3803. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3804. Post Message:   fractint@lists.xmission.com
  3805. Get Commands:   majordomo@lists.xmission.com "help"
  3806. Administrator:  twegner@phoenix.net
  3807. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3808.  
  3809.  
  3810. -------------------------------------------------------------------------------
  3811.  
  3812. From: Phil McRevis <legalize@xmission.com>
  3813. Subject: Re: (fractint) new computer 
  3814. Date: 28 Jun 1999 17:28:54 -0600
  3815.  
  3816.  
  3817. In article <009801bec1bc$4868e940$50a943ce@phild>,
  3818.     "Phil DiGiorgi" <phild@iinc.com>  writes:
  3819.  
  3820. > For backups, I use a second hard drive and a "drive image" program.   There
  3821. > are some disadvantages to this, but it is fast, fast, fast, and the program I
  3822. > am using (from Powerquest) allows you to restore individual files as well as
  3823. > whole partitions.   It also supports spanning Zip or Jaz disks.
  3824.  
  3825. Yeah, that's a good idea.  If you already have a SCSI interface on
  3826. your PC, it might be easier to have the 'backup' drive be a SCSI drive
  3827. that you can attach by a cable so you don't have to open the case.
  3828. PC magazine has reviewd drive image programs
  3829. <http://www.zdnet.com/products/stories/reviews/0,4161,397228,00.html>
  3830. --
  3831. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  3832.     ``Ain't it funny that they all fire the pistol,     
  3833.       at the wrong end of the race?''--PDBT     
  3834. legalize@xmission.com    <http://www.eden.com/~thewho>
  3835.  
  3836. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3837. Post Message:   fractint@lists.xmission.com
  3838. Get Commands:   majordomo@lists.xmission.com "help"
  3839. Administrator:  twegner@phoenix.net
  3840. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3841.  
  3842.  
  3843. -------------------------------------------------------------------------------
  3844.  
  3845. From: "Damien M. Jones" <dmj@fractalus.com>
  3846. Subject: Re: (fractint) new computer
  3847. Date: 28 Jun 1999 18:43:20 -0500
  3848.  
  3849. Phil, Kathy,
  3850.  
  3851.  - For video, I think you are safe with either a Matrox Millenium card or
  3852.  - any of the cards based on the Riva TNT chip.
  3853.  
  3854. LOL, I didn't even think of that. I have a Riva TNT card right now, 16M
  3855. AGP, and the card I had before that was an 8M Matrox Millennium. The
  3856. Millennium was a great card, did 1152x864x16 at a really nice refresh rate,
  3857. and had a razor-sharp image.
  3858.  
  3859. Then I got my Riva TNT board, I was really worried about image quality, but
  3860. this has a great, sharp image and does 1152x864x32 faster than the
  3861. Millennium would do the 16-bit depth. And, of course, it has
  3862. mind-bogglingly cool 3D performance.
  3863.  
  3864. Both cards worked fine with FractInt.
  3865.  
  3866. Damien M. Jones   \\
  3867. dmj@fractalus.com  \\  Fractalus Galleries & Info:
  3868.                     \\  http://www.fractalus.com/
  3869.  
  3870. Please do not post my e-mail address on a web site or
  3871. in a newsgroup.  Thank you.
  3872.  
  3873. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3874. Post Message:   fractint@lists.xmission.com
  3875. Get Commands:   majordomo@lists.xmission.com "help"
  3876. Administrator:  twegner@phoenix.net
  3877. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3878.  
  3879.  
  3880. -------------------------------------------------------------------------------
  3881.  
  3882. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  3883. Subject: Re: (fractint) 3d Mandelbrot? 
  3884. Date: 29 Jun 1999 13:57:54 +1200
  3885.  
  3886. At 17:23 28/06/99 -0600, you wrote:
  3887. >
  3888. >In article <3777F9A3.B90E5905@mn.mediaone.net>,
  3889. >    David Kosokar <dkosokar@mn.mediaone.net>  writes:
  3890. >
  3891. >> [...] I would like
  3892. >> to give it a parameter (or 2 or 3) and have it give me the shape,
  3893. >> rendered and shaded. Anyone out there know of anything like that?
  3894. >
  3895. >Yep, I know what you mean.  Having the primitive built into the ray
  3896. >tracer would be best.  However, if that isn't available you have the
  3897. >choice of programming something that does it, or using the hack I
  3898. >described ;-).
  3899. >
  3900. If you don't mind a blocky low-res version, you could perhaps fool POV-Ray
  3901. into doing it (at least, if you have version 3, preferably 3.1), by using
  3902. the _definition_ of the Mandelbrot set: generate a three-dimensional array
  3903. of quaternion Julia sets, intersect each one with a small cube centred at
  3904. the origin, and then stack up the cubical pieces.
  3905.  
  3906. This recognises the fact that the origin is inside the Julia set iff the
  3907. set is connected; and the Mandelbrot set represents the set of all
  3908. connected Julia sets.
  3909.  
  3910. I don't know how slow this technique will be - unable to find the time yet
  3911. to write the POV-Ray code - but I guess it probably wouldn't be as slow as
  3912. it sounds; not much slower than an appropriate primitive, in fact, once
  3913. parsing is out of the way.
  3914.  
  3915. Then again, for C programmers the job of implementing an M-Set primitive
  3916. shouldn't be insurmountable - the code is virtually all there already.
  3917.  
  3918. Morgan
  3919.  
  3920.  
  3921.  
  3922. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3923. Post Message:   fractint@lists.xmission.com
  3924. Get Commands:   majordomo@lists.xmission.com "help"
  3925. Administrator:  twegner@phoenix.net
  3926. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3927.  
  3928.  
  3929. -------------------------------------------------------------------------------
  3930.  
  3931. From: "Morgan L. Owens" <packrat@nznet.gen.nz>
  3932. Subject: Re: (fractint) Multifractals ?
  3933. Date: 29 Jun 1999 14:23:48 +1200
  3934.  
  3935. At 01:56 29/06/99 EEST, you wrote:
  3936. >Hi all,
  3937. >
  3938. >Have anyone heard the term "multifractal"? (I have no idea what this might 
  3939. >be).
  3940. >
  3941. A "multifractal" is a structure that, on inspection, turns out to be a
  3942. number of fractals of different dimensions all occupying the same space.
  3943. They often turn up in modelling real-world situations, when different
  3944. influences on the system being modelled each have their own chaotic behaviour.
  3945.  
  3946.  
  3947.  
  3948.  
  3949.  
  3950.  
  3951. Thanks for using Fractint, The Fractals and Fractint Discussion List
  3952. Post Message:   fractint@lists.xmission.com
  3953. Get Commands:   majordomo@lists.xmission.com "help"
  3954. Administrator:  twegner@phoenix.net
  3955. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  3956.  
  3957.  
  3958. -------------------------------------------------------------------------------
  3959.  
  3960. From: JoWeber <JoWeber@compuserve.com>
  3961. Subject: (fractint) some new pars
  3962. Date: 29 Jun 1999 04:56:01 -0400
  3963.  
  3964. Hi All,
  3965.  
  3966. some nice images. Enjoy --Jo--
  3967.  
  3968. http://www.joweber.de
  3969.  
  3970.  
  3971. jo06_10            { ; t=3D  0:16:21.85 =
  3972.  
  3973.                      ; on a P233MMX at 1600x1200  Jun 28, 1999  15:41:45
  3974.                      ; Par and Image Copyright 1999 by Jo Weber
  3975.                      ; e-mail to JoWeber@compuserve.com
  3976.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  3977.   formulaname=3Dmandelbrotmix4 function=3Dident passes=3Dt
  3978.   center-mag=3D-0.00111153314375495/-0.00160009875538247/1.192666e+009/1/=
  3979. -22\
  3980.   .498 params=3D-500/-500/-1.1/-1/0/0 float=3Dy maxiter=3D7200 bailout=3D=
  3981. 25
  3982.   inside=3D0 logmap=3D129 symmetry=3Dnone periodicity=3D10
  3983.   colors=3D000I84G73D52<5>M82O92QA2SB1UC1<2>ZE1<11>wqJzuLztL<18>mSClRCjQB=
  3984. <21\
  3985.   >H21F00G01<3>K08L09K19<3>F6AD8BC9BAAC9BC<2>5FD3HE4IF<7>FSPHTRIUSJWTKXVM=
  3986. Y\
  3987.   W<2>Qa_SbaUdbWedYge<11>uxxwzzwzz<10>nurmtrmsqlsqlsp<13>`kh_jgZjfYieYhe<=
  3988. 4\
  3989.   >TeaTd`Sc_RbZQbZPaY<5>JXTIWSJXS<12>bkbdlcfmdhoeipf<10>xylzzmzzl<6>zxazw=
  3990. `\
  3991.   zwZzvYzvW<2>zuSztQzsQ<3>wmMvkLuiKugJtfI<4>pZGoXGoWGnUGmTGlRF<11>LA5
  3992.   }
  3993.  
  3994. jo06_11            { ; t=3D  3:53:44.73 =
  3995.  
  3996.                      ; on a P233MMX at 1600x1200  Jun 28, 1999  15:41:56
  3997.                      ; Par and Image Copyright 1999 by Jo Weber
  3998.                      ; e-mail to JoWeber@compuserve.com
  3999.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  4000.   formulaname=3Dmandelbrotmix4 function=3Drecip passes=3Dt
  4001.   center-mag=3D-0.13170690815019950/+0.32310468642354880/4.920796e+007/1/=
  4002. -17\
  4003.   5 params=3D1/-1/-1/1/0.03/10000 float=3Dy maxiter=3D21000 bailout=3D25
  4004.   inside=3D0 logmap=3D530 symmetry=3Dyaxis periodicity=3D10
  4005.   colors=3D000C5M83F42763A00G022055<2>2DD2FG3HI4JL5MN<2>8TW<2>KWcOXeSYgWZ=
  4006. i__\
  4007.   lc`ngWQlQ0iN0gJ0<2>p80<4>M20<6>kbs<7>000220<6>1KR1NV1QZ1Tb1Wf1Zj0`n0cr<=
  4008. 5\
  4009.   >3PZ4NW5KS6IP6FL7DI8AE<2>23300000500A<5>08E<7>NW5Q_3Tb2We0Tb1<7>9E96AB4=
  4010. 7\
  4011.   A149000<3>II0MM0RR0WW0<3>hhMlkSooYsrcvvhzynwtosop<8>NhlJgkFgkBfj8ej4di0=
  4012. c\
  4013.   h0ae0Zb<3>22R<5>569335000000400<2>A00C00C00D00000F00<9>O00<4>zg0<2>rY0o=
  4014. U\
  4015.   0kU2<6>JUF<4>gl6lo5qs3uv2zz0<10>`00<2>jNKmVQpbWtjawqhzyn<8>yUF<7>x4R<10=
  4016. >\
  4017.   G7U
  4018.   }
  4019.  
  4020. jo06_12            { ; t=3D  1:57:14.53 =
  4021.  
  4022.                      ; on a P233MMX at 1600x1200  Jun 28, 1999  15:42:07
  4023.                      ; Par and Image Copyright 1999 by Jo Weber
  4024.                      ; e-mail to JoWeber@compuserve.com
  4025.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  4026.   formulaname=3Dmandelbrotmin passes=3D1
  4027.   center-mag=3D-0.31779604786148090/+0.77644011515230850/2678.081/1/117.4=
  4028. 99
  4029.   params=3D1.25/0/0/0/0/0 float=3Dy maxiter=3D150000 bailout=3D25 inside=3D=
  4030. 0
  4031.   logmap=3D65 symmetry=3Dnone periodicity=3D10
  4032.   colors=3D000<4>0DD0GG0JJ0MM2OO4PR6RT8TW<2>KWcOXeSYgWZi__lc`ngWQlQ0iN0gJ=
  4033. 0<2\
  4034.   >p80<2>W20P00K00<3>000023057<4>OKS<3>000220457<5>HKSJNWMQ_OTcQWg<2>Xcr<=
  4035. 1\
  4036.   4>23300000500A<5>08E<7>NW5Q_3Tb2We0Tb1<7>9E96AB47A149000<3>II0MM0RR0WW0=
  4037. <\
  4038.   3>hhMlkSooYsrcvvhzynwtosop<8>NhlJgkFgkBfj8ej4di0ch0ae0Zb<3>22R<5>569335=
  4039. 0\
  4040.   00000400<2>A00C00C00D00000F00<9>O00<4>zg0<3>oU0<2>0CI0FM<8>gl6lp5qs3uw2=
  4041. z\
  4042.   z0<10>`00<2>jNKmVQpbWtjawqhzyn<8>yUF<7>x4R<6>W6TS6TO7TK7TG7UC5M83F42763=
  4043. A\
  4044.   00G
  4045.   }
  4046.  
  4047. jo06_13            { ; t=3D  1:25:10.00 =
  4048.  
  4049.                      ; on a P233MMX at 1600x1200  Jun 28, 1999  15:42:17
  4050.                      ; Par and Image Copyright 1999 by Jo Weber
  4051.                      ; e-mail to JoWeber@compuserve.com
  4052.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  4053.   formulaname=3Dmandelbrotmin passes=3D1
  4054.   center-mag=3D-0.31944275114657080/+0.77742893113940280/1260.274/1/142.4=
  4055. 97
  4056.   params=3D1.25/0/0/0/0/0 float=3Dy maxiter=3D150000 bailout=3D25 inside=3D=
  4057. 0
  4058.   logmap=3D65 symmetry=3Dnone periodicity=3D10
  4059.   colors=3D000<4>0DD0GG0JJ0MM2OO4PR6RT8TW<2>KWcOXeSYgWZi__lc`ngWQlQ0iN0gJ=
  4060. 0<2\
  4061.   >p80<2>W20P00K00<3>000023057<4>OKS<3>000220457<5>HKSJNWMQ_OTcQWg<2>Xcr<=
  4062. 1\
  4063.   4>23300000500A<5>08E<7>NW5Q_3Tb2We0Tb1<7>9E96AB47A149000<3>II0MM0RR0WW0=
  4064. <\
  4065.   3>hhMlkSooYsrcvvhzynwtosop<8>NhlJgkFgkBfj8ej4di0ch0ae0Zb<3>22R<5>569335=
  4066. 0\
  4067.   00000400<2>A00C00C00D00000F00<9>O00<4>zg0<3>oU0<2>0CI0FM<8>gl6lp5qs3uw2=
  4068. z\
  4069.   z0<10>`00<2>jNKmVQpbWtjawqhzyn<8>yUF<7>x4R<6>W6TS6TO7TK7TG7UC5M83F42763=
  4070. A\
  4071.   00G
  4072.   }
  4073.  
  4074. jo06_14            { ; t=3D  4:39:42.11 =
  4075.  
  4076.                      ; on a P233MMX at 1600x1200  Jun 28, 1999  15:42:28
  4077.                      ; Par and Image Copyright 1999 by Jo Weber
  4078.                      ; e-mail to JoWeber@compuserve.com
  4079.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  4080.   formulaname=3Dmandelbrotmin passes=3Dt
  4081.   center-mag=3D-0.31796938224885470/+0.77353569174380330/824.025/1/117.49=
  4082. 7
  4083.   params=3D1.25/0/0/0/0/0 float=3Dy maxiter=3D150000 bailout=3D25 inside=3D=
  4084. 0
  4085.   logmap=3D65 symmetry=3Dnone periodicity=3D10
  4086.   colors=3D000<4>0DD0GG0JJ0MM2OO4PR6RT8TW<2>KWcOXeSYgWZi__lc`ngWQlQ0iN0gJ=
  4087. 0<2\
  4088.   >p80<2>W20P00K00<3>000023057<4>OKS<3>000220457<5>HKSJNWMQ_OTcQWg<2>Xcr<=
  4089. 1\
  4090.   4>23300000500A<5>08E<7>NW5Q_3Tb2We0Tb1<7>9E96AB47A149000<3>II0MM0RR0WW0=
  4091. <\
  4092.   3>hhMlkSooYsrcvvhzynwtosop<8>NhlJgkFgkBfj8ej4di0ch0ae0Zb<3>22R<5>569335=
  4093. 0\
  4094.   00000400<2>A00C00C00D00000F00<9>O00<4>zg0<3>oU0<2>0CI0FM<8>gl6lp5qs3uw2=
  4095. z\
  4096.   z0<10>`00<2>jNKmVQpbWtjawqhzyn<8>yUF<7>x4R<6>W6TS6TO7TK7TG7UC5M83F42763=
  4097. A\
  4098.   00G
  4099.   }
  4100.  
  4101. jo06_15            { ; t=3D  0:58:13.80 =
  4102.  
  4103.                      ; on a P233MMX at 1600x1200  Jun 28, 1999  15:42:39
  4104.                      ; Par and Image Copyright 1999 by Jo Weber
  4105.                      ; e-mail to JoWeber@compuserve.com
  4106.   reset=3D1960 type=3Dformula formulafile=3Dfractint.frm
  4107.   formulaname=3Dobliquemanplus passes=3Dt
  4108.   center-mag=3D+1.33093052529746200/-0.33953092795716030/203.8353/1/64.99=
  4109. 9
  4110.   params=3D0/0/-0.5/0.527/0.018756/0.024873 float=3Dy maxiter=3D32500
  4111.   bailout=3D25 inside=3D0 logmap=3D76 logmode=3Dfly symmetry=3Dnone
  4112.   periodicity=3D10
  4113.   colors=3D000<4>0DD0GG0JJ0MM2OO4PR6RT8TW<2>KWcOXeSYgWZi__lc`ngWQlQ0iN0gJ=
  4114. 0<2\
  4115.   >p80<2>W20P00K00<3>000023057<4>OKS<3>000220457<5>HKSJNWMQ_OTcQWg<2>Xcr<=
  4116. 1\
  4117.   4>23300000500A<5>08E<7>NW5Q_3Tb2We0Tb1<7>9E96AB47A149000<3>II0MM0RR0WW0=
  4118. <\
  4119.   3>hhMlkSooYsrcvvhzynwtosop<8>NhlJgkFgkBfj8ej4di0ch0ae0Zb<3>22R<5>569335=
  4120. 0\
  4121.   00000400<2>A00C00C00D00000F00<9>O00<4>zg0<3>oU0<2>0CI0FM<8>gl6lp5qs3uw2=
  4122. z\
  4123.   z0<10>`00<2>jNKmVQpbWtjawqhzyn<8>yUF<7>x4R<6>W6TS6TO7TK7TG7UC5M83F42763=
  4124. A\
  4125.   00G
  4126.   }
  4127.  
  4128. frm:ObliqueManPlus {;Jim Muth
  4129. z=3Dp1+pixel, c=3Dp2+(p3*pixel):
  4130. z=3Dsqr(z)+c,
  4131. |z| <=3D100
  4132. }
  4133.  
  4134. frm:MandelbrotMiN {; Jim Muth
  4135. b=3Dp1, z=3Dp2, c=3Dp3+pixel:
  4136. z=3D(-z)^(b)+c,
  4137. |z| <=3D 16
  4138. }
  4139.  
  4140. frm:MandelbrotMix4 {; Jim Muth
  4141. a=3Dreal(p1), b=3Dimag(p1), d=3Dreal(p2), f=3Dimag(p2),
  4142. g=3D1/f, h=3D1/d, j=3D1/(f-b), z=3D(-a*b*g*h)^j,
  4143. k=3Dreal(p3)+1, l=3Dimag(p3)+100, c=3Dfn1(pixel):
  4144. z=3Dk*((a*(z^b))+(d*(z^f)))+c,
  4145. |z| < l
  4146. }
  4147.  
  4148.  
  4149.  
  4150. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4151. Post Message:   fractint@lists.xmission.com
  4152. Get Commands:   majordomo@lists.xmission.com "help"
  4153. Administrator:  twegner@phoenix.net
  4154. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4155.  
  4156.  
  4157. -------------------------------------------------------------------------------
  4158.  
  4159. From: lmass11@univ-pau.fr
  4160. Subject: (fractint) Dynamic System
  4161. Date: 29 Jun 1999 12:29:04 +0200
  4162.  
  4163. Hello all the list, I just did the subscription to the list.
  4164. I'm a mathematic student from the Pau's University, France.
  4165. Please, may someone explain what is a dynamic system and give me an example ? 
  4166. If anyone know a tutorial out in the Internet I will be glad to download it.
  4167. Please let me know.
  4168.  
  4169. Thanks a lot.
  4170.  
  4171. Octavio 
  4172.  
  4173. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4174. Post Message:   fractint@lists.xmission.com
  4175. Get Commands:   majordomo@lists.xmission.com "help"
  4176. Administrator:  twegner@phoenix.net
  4177. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4178.  
  4179.  
  4180. -------------------------------------------------------------------------------
  4181.  
  4182. From: Phil McRevis <legalize@xmission.com>
  4183. Subject: Re: (fractint) Dynamic System 
  4184. Date: 29 Jun 1999 10:38:45 -0600
  4185.  
  4186.  
  4187. In article <199906291029.MAA32660@crisv2.univ-pau.fr>,
  4188.     lmass11@univ-pau.fr  writes:
  4189.  
  4190. > Please, may someone explain what is a dynamic system and give me an example?
  4191.  
  4192. "Dynamical system" is a very broad term.  They come from the study of
  4193. simple physical systems whose dynamics can be described with a few
  4194. simple equations, but whose long-term behavior is quite unexpectedly
  4195. complex given the simplicity of their analytic description.  You've
  4196. probably seen little "chaos toys" marketed that consist of a pendulum
  4197. with a magnet at the end swinging over top of a group of
  4198. electromagnets which cause the pendulum to wobble and sway in a very
  4199. complex pattern.  This is an example of a chaotic dynamical system.
  4200. The dynamics of magnetic force and gravity are quite readily
  4201. described, but the simplicity of their analytic description doesn't
  4202. make their chaotic behavior over time clear.
  4203.  
  4204. With fractint, you can view the lorenz attractor which is an example of
  4205. a dynamical system that was based on a model of fluid flow for
  4206. studying weather.
  4207. --
  4208. <http://www.xmission.com/~legalize/>    Legalize Adulthood!
  4209.     ``Ain't it funny that they all fire the pistol,     
  4210.       at the wrong end of the race?''--PDBT     
  4211. legalize@xmission.com    <http://www.eden.com/~thewho>
  4212.  
  4213. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4214. Post Message:   fractint@lists.xmission.com
  4215. Get Commands:   majordomo@lists.xmission.com "help"
  4216. Administrator:  twegner@phoenix.net
  4217. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4218.  
  4219.  
  4220. -------------------------------------------------------------------------------
  4221.  
  4222. From: ian.ent@argonet.co.uk (Dr I D Entwistle)
  4223. Subject: Re: (fractint) new computer
  4224. Date: 29 Jun 1999 20:32:56
  4225.  
  4226. On Mon 28 Jun 99 (19:16:38), phild@iinc.com wrote:
  4227.  
  4228. > For video, I think you are safe with either a Matrox Millenium card or
  4229. > any of the cards based on the Riva TNT chip.   These are very popular
  4230. > and have Vesa support built in.   I use a Viper 550, and it works great
  4231. > for me.
  4232.  Phil
  4233.     Do you or any other Fractint user have any experience with using the 3dfx
  4234. Voodoo 3000 card for running Fractint? Over here in the UK it is considered
  4235. just now to be the fastest video card around.
  4236.    Ian
  4237. -- 
  4238. See fractal Galleries at http://www.argonet.co.uk/users/ian.ent
  4239.  
  4240.  
  4241.  
  4242.  
  4243.  
  4244. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4245. Post Message:   fractint@lists.xmission.com
  4246. Get Commands:   majordomo@lists.xmission.com "help"
  4247. Administrator:  twegner@phoenix.net
  4248. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4249.  
  4250.  
  4251. -------------------------------------------------------------------------------
  4252.  
  4253. From: "Mike and Linda Allison" <gumbycat@worldnet.att.net>
  4254. Subject: (fractint) Fractint Tutorials moved to Fractalus
  4255. Date: 29 Jun 1999 17:07:04 -0700
  4256.  
  4257. We've left the sinking ship - all Gumbycat's Fractint Tutorials are now
  4258. at:
  4259.  
  4260. http://www.fractalus.com/gumbycat/tutorials.html
  4261.  
  4262.  
  4263. Linda Allison
  4264.  
  4265.  
  4266.  
  4267. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4268. Post Message:   fractint@lists.xmission.com
  4269. Get Commands:   majordomo@lists.xmission.com "help"
  4270. Administrator:  twegner@phoenix.net
  4271. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4272.  
  4273.  
  4274. -------------------------------------------------------------------------------
  4275.  
  4276. From: "Phil DiGiorgi" <phild@iinc.com>
  4277. Subject: Re: (fractint) new computer
  4278. Date: 30 Jun 1999 16:57:11 -0400
  4279.  
  4280. >  Phil
  4281. >     Do you or any other Fractint user have any experience with using the
  4282. 3dfx
  4283. > Voodoo 3000 card for running Fractint? Over here in the UK it is considered
  4284. > just now to be the fastest video card around.
  4285. >    Ian
  4286. > --
  4287.  
  4288. Sorry, I don't have any idea about the 3Dfx cards.   I'd be interested in
  4289. knowing how you make out if you decide to try one, though.
  4290.  
  4291. Phil D.
  4292.  
  4293.  
  4294. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4295. Post Message:   fractint@lists.xmission.com
  4296. Get Commands:   majordomo@lists.xmission.com "help"
  4297. Administrator:  twegner@phoenix.net
  4298. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4299.  
  4300.  
  4301. -------------------------------------------------------------------------------
  4302.  
  4303. From: lynda sweetman <sweetman@aye.net>
  4304. Subject: (fractint) Pesky menu screen
  4305. Date: 30 Jun 1999 20:20:01 -0500
  4306.  
  4307. I had Fractint 19.2 on my other computer, and had no problems. It is now
  4308. in the shop, so I set up my son's, and downloaded Fractint 19.6. Every
  4309. time I save or load a file, the menu screen is minimized and
  4310. superimposed over the fractal file up in the left hand corner. How do I
  4311. get it off? I am running Windows 95 (it does the same in DOS). Any
  4312. suggestions would be appreciated.
  4313.  
  4314. Thanks for using Fractint, The Fractals and Fractint Discussion List
  4315. Post Message:   fractint@lists.xmission.com
  4316. Get Commands:   majordomo@lists.xmission.com "help"
  4317. Administrator:  twegner@phoenix.net
  4318. Unsubscribe:    majordomo@lists.xmission.com "unsubscribe fractint"
  4319.  
  4320.