-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Performance improvements, fix javadoc and simplify APIs.
- Loading branch information
Showing
22 changed files
with
381 additions
and
447 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
core/src/main/java/de/articdive/jnoise/core/api/annotations/Vector1D.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package de.articdive.jnoise.core.api.annotations; | ||
|
||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
|
||
@Retention(RetentionPolicy.RUNTIME) | ||
public @interface Vector1D { | ||
} |
8 changes: 8 additions & 0 deletions
8
core/src/main/java/de/articdive/jnoise/core/api/annotations/Vector2D.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package de.articdive.jnoise.core.api.annotations; | ||
|
||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
|
||
@Retention(RetentionPolicy.RUNTIME) | ||
public @interface Vector2D { | ||
} |
8 changes: 8 additions & 0 deletions
8
core/src/main/java/de/articdive/jnoise/core/api/annotations/Vector3D.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package de.articdive.jnoise.core.api.annotations; | ||
|
||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
|
||
@Retention(RetentionPolicy.RUNTIME) | ||
public @interface Vector3D { | ||
} |
8 changes: 8 additions & 0 deletions
8
core/src/main/java/de/articdive/jnoise/core/api/annotations/Vector4D.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package de.articdive.jnoise.core.api.annotations; | ||
|
||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
|
||
@Retention(RetentionPolicy.RUNTIME) | ||
public @interface Vector4D { | ||
} |
4 changes: 1 addition & 3 deletions
4
core/src/main/java/de/articdive/jnoise/core/api/noisegen/NoiseResult.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 0 additions & 45 deletions
45
core/src/main/java/de/articdive/jnoise/core/util/vectors/Vector.java
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
core/src/main/java/de/articdive/jnoise/core/util/vectors/Vector1D.java
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
core/src/main/java/de/articdive/jnoise/core/util/vectors/Vector2D.java
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
core/src/main/java/de/articdive/jnoise/core/util/vectors/Vector3D.java
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
core/src/main/java/de/articdive/jnoise/core/util/vectors/Vector4D.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.