[gimp-help] Update Map filters (end)
- From: Julien Hardlin <jhardlin src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp-help] Update Map filters (end)
- Date: Sun, 3 Mar 2019 16:28:28 +0000 (UTC)
commit b18262cde488a606f37cdabcdeedb1bc1111de79
Author: Julien Hardelin <jhardlin orange fr>
Date: Sun Mar 3 17:27:56 2019 +0100
Update Map filters (end)
images/C/filters/map/fractal_trace-legacy.png | Bin 0 -> 85741 bytes
images/C/filters/map/smalltiles.png | Bin 12811 -> 0 bytes
images/C/filters/map/tile_seamless-dialog.png | Bin 0 -> 16136 bytes
images/C/filters/map/warp.png | Bin 45770 -> 0 bytes
src/filters/map.xml | 9 +-
src/filters/map/fractal-trace-legacy.xml | 104 ++++++
src/filters/map/map-object.xml | 17 +-
src/filters/map/smalltiles.xml | 140 --------
.../map/{make-seamless.xml => tile-seamless.xml} | 17 +-
src/filters/map/tile.xml | 4 +-
src/filters/map/warp.xml | 381 ---------------------
src/filters/render/solid_noise.xml | 4 +-
12 files changed, 133 insertions(+), 543 deletions(-)
---
diff --git a/images/C/filters/map/fractal_trace-legacy.png b/images/C/filters/map/fractal_trace-legacy.png
new file mode 100644
index 000000000..f099c597f
Binary files /dev/null and b/images/C/filters/map/fractal_trace-legacy.png differ
diff --git a/images/C/filters/map/tile_seamless-dialog.png b/images/C/filters/map/tile_seamless-dialog.png
new file mode 100644
index 000000000..63d0bd539
Binary files /dev/null and b/images/C/filters/map/tile_seamless-dialog.png differ
diff --git a/src/filters/map.xml b/src/filters/map.xml
index a86a5989a..0fe0af2fd 100644
--- a/src/filters/map.xml
+++ b/src/filters/map.xml
@@ -19,11 +19,8 @@
<xi:include href="map/panorama-projection.xml"/>
<xi:include href="map/recursive-transform.xml"/>
<xi:include href="map/papertile.xml"/>
- <xi:include href="map/tile.xml"/>
- <xi:include href="map/make-seamless.xml"/>
+ <xi:include href="map/tile-seamless.xml"/>
+ <xi:include href="map/fractal-trace-legacy.xml"/>
<xi:include href="map/map-object.xml"/>
-
- <xi:include href="map/smalltiles.xml"/>
-
- <xi:include href="map/warp.xml"/>
+ <xi:include href="map/tile.xml"/>
</sect1>
diff --git a/src/filters/map/fractal-trace-legacy.xml b/src/filters/map/fractal-trace-legacy.xml
new file mode 100644
index 000000000..efbd0c825
--- /dev/null
+++ b/src/filters/map/fractal-trace-legacy.xml
@@ -0,0 +1,104 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE sect2 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
+ "http://www.docbook.org/xml/4.3/docbookx.dtd">
+<!-- section history:
+ 2019-03-03 j.h: update to v2.10
+ 2005-10-22 created by julien hardelin
+-->
+<sect2 id="plug-in-fractal-trace">
+ <title>Fractal Trace (legacy)</title>
+
+ <indexterm>
+ <primary>Filters</primary>
+ <secondary>Map</secondary>
+ <tertiary>Fractal Trace (legacy)</tertiary>
+ </indexterm>
+ <indexterm>
+ <primary>Fractal trace (legacy)</primary>
+ </indexterm>
+
+ <sect3>
+ <title>Overview</title>
+ <figure>
+ <title>Fractal Trace (legacy)</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata format="PNG"
+ fileref="images/filters/examples/kvitveis-orig.png"/>
+ </imageobject>
+ <caption>
+ <para>Original image</para>
+ </caption>
+ </mediaobject>
+ <mediaobject>
+ <imageobject>
+ <imagedata format="PNG"
+ fileref="images/filters/examples/kvitveis-fractal.png"/>
+ </imageobject>
+ <caption>
+ <para>Filter <quote>Fractal Trace (legacy)</quote> applied</para>
+ </caption>
+ </mediaobject>
+ </figure>
+ <para>
+ This filter transforms the image with the Mandelbrot fractal: it maps
+ the image to the fractal.
+ </para>
+ </sect3>
+
+ <sect3>
+ <title>Activate the filter</title>
+ <para>
+ This filter is found in the image window menu under
+ <menuchoice>
+ <guimenu>Filters</guimenu>
+ <guisubmenu>Map</guisubmenu>
+ <guimenuitem>Fractal trace (legacy)…</guimenuitem>
+ </menuchoice>.
+ </para>
+ </sect3>
+
+ <sect3>
+ <title>Options</title>
+ <figure>
+ <title><quote>Fractal trace (legacy)</quote> filter options</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata format="PNG"
+ fileref="images/filters/map/fractal_trace-legacy.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <variablelist>
+ <title>Mandelbrot parameters</title>
+ <varlistentry>
+ <term>X1</term>
+ <term>X2</term>
+ <term>Y1</term>
+ <term>Y2</term>
+ <term>Depth</term>
+ <listitem>
+ <para>
+ These parameters are similar to X/YMIN, X/YMAX and ITER
+ parameters of the
+ <link linkend="plug-in-fractalexplorer">Fractal Explorer</link>
+ filter. They allow you to vary fractal spreading and detail
+ depth.
+ </para>
+ </listitem>
+ </varlistentry>
+ <varlistentry>
+ <term>Outside Type</term>
+ <listitem>
+ <para>
+ Mapping image to fractal may reveal empty areas. You can select
+ to fill them with <guilabel>Black</guilabel>,
+ <guilabel>White</guilabel>, <guilabel>Transparency</guilabel> or
+ make what disappears on one side reappear on the opposite side
+ with <guilabel>Wrap</guilabel> option.
+ </para>
+ </listitem>
+ </varlistentry>
+ </variablelist>
+ </sect3>
+</sect2>
diff --git a/src/filters/map/map-object.xml b/src/filters/map/map-object.xml
index 0e49f1355..bc7eb86fe 100644
--- a/src/filters/map/map-object.xml
+++ b/src/filters/map/map-object.xml
@@ -2,14 +2,7 @@
<!DOCTYPE sect2 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.docbook.org/xml/4.3/docbookx.dtd">
<!-- section history:
- 2008-12-09 ude: moved "activate filter" paras to separate sect3
- 2008-06-07 j.h: change in Preview section
- 2008-04-06 alex falappa: restored italian translation from jan 2007 file revision
- 2007-09-06 AntI: added 'es'
- 2007-05-07 KoSt: added 'no'
- 2006-12-22 laxa: added german translation
- 2005-12-07 replaced <simplesect> by <sect3> by lexa
- 2005-11-30 replaced informalfigure by axel.wernicke
+ 2019-03-03 j.h: update to v2.10
2005-11-30 made it valid docbook by axel.wernicke
2005-10-22 created by julien hardelin
-->
@@ -113,6 +106,14 @@
</para>
</listitem>
</varlistentry>
+ <varlistentry>
+ <term>Update preview live</term>
+ <listitem>
+ <para>
+ To have preview working as usual.
+ </para>
+ </listitem>
+ </varlistentry>
</variablelist>
</sect4>
diff --git a/src/filters/map/make-seamless.xml b/src/filters/map/tile-seamless.xml
similarity index 81%
rename from src/filters/map/make-seamless.xml
rename to src/filters/map/tile-seamless.xml
index 194dacdf1..b140f61b8 100644
--- a/src/filters/map/make-seamless.xml
+++ b/src/filters/map/tile-seamless.xml
@@ -2,9 +2,7 @@
<!DOCTYPE sect2 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.docbook.org/xml/4.3/docbookx.dtd">
<!-- section history:
- 2007-05-07 KoSt: added 'no'
- 2006-12-13 lexa: added german translation
- 2005-11-25 fixed image file name by axel.wernicke
+ 2019-03-03 j.h: update to v2.10
2005-11-04 Created, en;fr, by julien hardelin
-->
<sect2 id="gimp-filter-tile-seamless">
@@ -58,4 +56,17 @@
</menuchoice>
</para>
</sect3>
+
+ <sect3>
+ <title>Options</title>
+ <figure>
+ <title><quote>Tile Seamless</quote> filter options</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata format="PNG"
+ fileref="images/filters/map/tile_seamless-dialog.png"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </sect3>
</sect2>
diff --git a/src/filters/map/tile.xml b/src/filters/map/tile.xml
index e2d098f6b..de5366a3a 100644
--- a/src/filters/map/tile.xml
+++ b/src/filters/map/tile.xml
@@ -2,9 +2,7 @@
<!DOCTYPE sect2 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
"http://www.docbook.org/xml/4.3/docbookx.dtd">
<!-- section history:
- 2007-09-04 AntI: added 'es'
- 2007-05-08 KoSt: added 'no'
- 2005-12-21 added German translation by ude
+ 2019-03-03 j.h: check for v2.10
2005-10-24 created en;fr by julien hardelin
-->
<sect2 id="plug-in-tile">
diff --git a/src/filters/render/solid_noise.xml b/src/filters/render/solid_noise.xml
index 13832d454..364fa645b 100644
--- a/src/filters/render/solid_noise.xml
+++ b/src/filters/render/solid_noise.xml
@@ -38,8 +38,8 @@
doesn't matter what the original image looks like -- this filter
completely overwrites any existing background in the layer it is
applied to). This is also a good tool to create displacement maps for
- the <link linkend="plug-in-warp">Warp</link> plug-in or for the
- <link linkend="gimp-filter-bump-map">Bump Map</link> plug-in. With the
+ the <link linkend="gimp-tool-warp">Warp transform</link> tool or for the
+ <link linkend="gimp-filter-bump-map">Bump Map</link> filter. With the
"turbulence" setting active, the results look quite a bit like real
clouds.
</para>
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]