Skip to content

Commit

Permalink
2021.9.149
Browse files Browse the repository at this point in the history
  • Loading branch information
BuildTools committed Oct 3, 2021
1 parent a565b76 commit 596294e
Show file tree
Hide file tree
Showing 25 changed files with 8,365 additions and 22 deletions.
2 changes: 1 addition & 1 deletion commons-jmelange/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.terefang.jmelange</groupId>
<artifactId>jmelange</artifactId>
<version>2021.8.148</version>
<version>2021.9.149</version>
</parent>
<artifactId>commons-jmelange</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion dao-jmelange/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.github.terefang.jmelange</groupId>
<artifactId>jmelange</artifactId>
<version>2021.8.148</version>
<version>2021.9.149</version>
</parent>
<artifactId>dao-jmelange</artifactId>

Expand Down
2 changes: 1 addition & 1 deletion data-jmelange/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>jmelange</artifactId>
<groupId>com.github.terefang.jmelange</groupId>
<version>2021.8.148</version>
<version>2021.9.149</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion gfx-jmelange/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>jmelange</artifactId>
<groupId>com.github.terefang.jmelange</groupId>
<version>2021.8.148</version>
<version>2021.9.149</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion passwd-jmelange/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>jmelange</artifactId>
<groupId>com.github.terefang.jmelange</groupId>
<version>2021.8.148</version>
<version>2021.9.149</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pdf-jmelange/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>jmelange</artifactId>
<groupId>com.github.terefang.jmelange</groupId>
<version>2021.8.148</version>
<version>2021.9.149</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

public class MainVersion
{
public static final String VERSION = "2021.8.148-2021.09.21.1404";
public static final String VERSION = "2021.9.149-2021.10.03.1034";
}
2 changes: 1 addition & 1 deletion pdfext-jmelange/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>jmelange</artifactId>
<groupId>com.github.terefang.jmelange</groupId>
<version>2021.8.148</version>
<version>2021.9.149</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion pdfml-jmelange/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>jmelange</artifactId>
<groupId>com.github.terefang.jmelange</groupId>
<version>2021.8.148</version>
<version>2021.9.149</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.github.terefang.jmelange</groupId>
<artifactId>jmelange</artifactId>
<version>2021.8.148</version>
<version>2021.9.149</version>

<packaging>pom</packaging>
<modules>
Expand Down Expand Up @@ -34,6 +34,8 @@
<version.plexus.utils>3.3.0</version.plexus.utils>
<version.groovy>3.0.7</version.groovy>
<version.jython>2.7.2</version.jython>
<version.jruby>9.3.0.0</version.jruby>
<version.rhino>1.7.13</version.rhino>
</properties>

<dependencies>
Expand Down
2 changes: 1 addition & 1 deletion randfractal-jmelange/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>jmelange</artifactId>
<groupId>com.github.terefang.jmelange</groupId>
<version>2021.8.148</version>
<version>2021.9.149</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,10 @@ public void clear()
this.vF[i]=0.0;
}

public void dispose() {
this.vF=null;
}

public interface NormalizingFunction
{
double normalize(double v);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ public class TM_RidgedMF extends TM_MultiFractal {
@Override
public double distort(double x, double y, double z)
{

return 1.0 - Math.abs(super.distort(x, y, z));
}
}
Loading

0 comments on commit 596294e

Please sign in to comment.