Skip to content

Commit 3a8d09f

Browse files
committed
#23 Improve release
* Add minor improvements to README.md and pom files * Rename benchmark module to assessment
1 parent cd7e072 commit 3a8d09f

34 files changed

+59
-53
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
*.jar
1515

1616
# Util classes for creating .PIE files
17-
/benchmark/src/main/java/com/github/introfog/pie/benchmark/Display.java
18-
/benchmark/src/main/java/com/github/introfog/pie/benchmark/Main.java
17+
/assessment/src/main/java/com/github/introfog/pie/assessment/Display.java
18+
/assessment/src/main/java/com/github/introfog/pie/assessment/Main.java

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PIE
1+
PIE-Core
22
=========
33

44
[![License](https://img.shields.io/github/license/introfog/PIE2-Core?logo=Apache-2.0)](https://github.com/introfog/PIE2-Core/blob/develop/LICENSE.txt)
@@ -8,11 +8,11 @@ PIE
88
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.introfog.pie/root/badge.svg)](https://mvnrepository.com/artifact/com.github.introfog.pie)
99

1010
### Main
11-
This project is a second iteration of physics rigid-body engine on Java8.
11+
PIE-Core is a fast physics 2D engine library on Java.
1212

13-
PIE consist of three modules:
13+
PIE-Core consist of three modules:
1414
* **Core** - main engine logics, such as: broad and narrow phase and collisions resolving.
15-
* **Benchmark** - different performance tests.
15+
* **Assessment** - different benchmark and algorithmic tests.
1616
* **Test** - code for organizing unit tests.
1717

1818
### Others

benchmark/pom.xml renamed to assessment/pom.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@
1010
<version>1.1-SNAPSHOT</version>
1111
</parent>
1212

13-
<artifactId>benchmark</artifactId>
13+
<artifactId>assessment</artifactId>
1414
<packaging>jar</packaging>
1515

16+
<name>PIE-Core Assessment</name>
17+
1618
<properties>
1719
<junit.version>4.13</junit.version>
1820
</properties>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
16-
package com.github.introfog.pie.benchmark.collisions.broadphase;
16+
package com.github.introfog.pie.assessment.collisions.broadphase;
1717

18-
import com.github.introfog.pie.benchmark.collisions.broadphase.applier.DefaultActionApplier;
19-
import com.github.introfog.pie.benchmark.collisions.broadphase.applier.IActionApplier;
18+
import com.github.introfog.pie.assessment.collisions.broadphase.applier.DefaultActionApplier;
19+
import com.github.introfog.pie.assessment.collisions.broadphase.applier.IActionApplier;
2020
import com.github.introfog.pie.core.collisions.broadphase.BruteForceMethod;
2121

2222
import java.text.NumberFormat;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
16-
package com.github.introfog.pie.benchmark.collisions.broadphase;
16+
package com.github.introfog.pie.assessment.collisions.broadphase;
1717

1818
import java.text.NumberFormat;
1919

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
16-
package com.github.introfog.pie.benchmark.collisions.broadphase;
16+
package com.github.introfog.pie.assessment.collisions.broadphase;
1717

18-
import com.github.introfog.pie.benchmark.collisions.broadphase.applier.IActionApplier;
18+
import com.github.introfog.pie.assessment.collisions.broadphase.applier.IActionApplier;
1919
import com.github.introfog.pie.core.collisions.broadphase.AbstractBroadPhase;
2020
import com.github.introfog.pie.core.collisions.broadphase.BruteForceMethod;
2121
import com.github.introfog.pie.core.collisions.broadphase.SpatialHashingMethod;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
16-
package com.github.introfog.pie.benchmark.collisions.broadphase;
16+
package com.github.introfog.pie.assessment.collisions.broadphase;
1717

1818
import com.github.introfog.pie.core.collisions.broadphase.AbstractBroadPhase;
1919
import com.github.introfog.pie.core.collisions.broadphase.BruteForceMethod;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
16-
package com.github.introfog.pie.benchmark.collisions.broadphase.applier;
16+
package com.github.introfog.pie.assessment.collisions.broadphase.applier;
1717

1818
import com.github.introfog.pie.core.collisions.broadphase.AbstractBroadPhase;
1919
import com.github.introfog.pie.core.math.MathPIE;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
16-
package com.github.introfog.pie.benchmark.collisions.broadphase.applier;
16+
package com.github.introfog.pie.assessment.collisions.broadphase.applier;
1717

1818
import com.github.introfog.pie.core.collisions.broadphase.AbstractBroadPhase;
1919
import com.github.introfog.pie.core.shape.IShape;
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
16-
package com.github.introfog.pie.benchmark.collisions.broadphase.applier;
16+
package com.github.introfog.pie.assessment.collisions.broadphase.applier;
1717

1818
import com.github.introfog.pie.core.collisions.broadphase.AbstractBroadPhase;
1919
import com.github.introfog.pie.core.shape.IShape;

0 commit comments

Comments
 (0)