Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Projet GORDYJAN_BAGNOLY_GARCIA_POIGNONNEC
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
POIGNONNEC
Projet GORDYJAN_BAGNOLY_GARCIA_POIGNONNEC
Commits
47283bd5
Commit
47283bd5
authored
May 07, 2019
by
Théo GORDYJAN
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
create_2nd_project
parent
9ae66768
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
0 additions
and
44 deletions
+0
-44
build.gradle
geometry/build.gradle
+0
-0
gradlew
geometry/gradlew
+0
-0
gradlew.bat
geometry/gradlew.bat
+0
-0
settings.gradle
geometry/settings.gradle
+0
-0
Block.java
geometry/src/main/Block.java
+0
-0
Edge.java
geometry/src/main/Edge.java
+0
-0
Main.java
geometry/src/main/Main.java
+0
-0
Point.java
geometry/src/main/Point.java
+0
-0
Segment.java
geometry/src/main/Segment.java
+0
-0
View.java
geometry/src/main/View.java
+0
-0
TestEdge.java
geometry/src/tests/TestEdge.java
+0
-0
TestPoint.java
geometry/src/tests/TestPoint.java
+0
-0
TestView.java
geometry/src/tests/TestView.java
+0
-0
Polygon.java
src/main/Polygon.java
+0
-25
Ray.java
src/main/Ray.java
+0
-2
TestPolygon.java
src/tests/TestPolygon.java
+0
-9
TestRay.java
src/tests/TestRay.java
+0
-8
No files found.
build.gradle
→
geometry/
build.gradle
View file @
47283bd5
File moved
gradlew
→
g
eometry/g
radlew
View file @
47283bd5
File moved
gradlew.bat
→
g
eometry/g
radlew.bat
View file @
47283bd5
File moved
settings.gradle
→
geometry/
settings.gradle
View file @
47283bd5
File moved
src/main/Block.java
→
geometry/
src/main/Block.java
View file @
47283bd5
File moved
src/main/Edge.java
→
geometry/
src/main/Edge.java
View file @
47283bd5
File moved
src/main/Main.java
→
geometry/
src/main/Main.java
View file @
47283bd5
File moved
src/main/Point.java
→
geometry/
src/main/Point.java
View file @
47283bd5
File moved
src/main/Segment.java
→
geometry/
src/main/Segment.java
View file @
47283bd5
File moved
src/main/View.java
→
geometry/
src/main/View.java
View file @
47283bd5
File moved
src/tests/TestEdge.java
→
geometry/
src/tests/TestEdge.java
View file @
47283bd5
File moved
src/tests/TestPoint.java
→
geometry/
src/tests/TestPoint.java
View file @
47283bd5
File moved
src/tests/TestView.java
→
geometry/
src/tests/TestView.java
View file @
47283bd5
File moved
src/main/Polygon.java
deleted
100644 → 0
View file @
9ae66768
import
java.util.ArrayList
;
import
java.util.List
;
public
class
Polygon
{
private
List
<
Point
>
points
;
public
Polygon
(
double
x
,
double
y
)
{
points
=
new
ArrayList
<>();
points
.
add
(
new
Point
(
x
,
y
));
}
public
void
addPoint
(
Point
p
){
points
.
add
(
p
);
}
public
void
addPoints
(
List
<
Point
>
l
){
points
.
addAll
(
l
);
}
public
List
<
Point
>
getPoints
(){
return
points
;
}
}
src/main/Ray.java
deleted
100644 → 0
View file @
9ae66768
public
class
Ray
{
}
src/tests/TestPolygon.java
deleted
100644 → 0
View file @
9ae66768
import
org.junit.Test
;
public
class
TestPolygon
{
@Test
public
void
testCreatingPolygon
()
{
}
}
src/tests/TestRay.java
deleted
100644 → 0
View file @
9ae66768
import
org.junit.Test
;
public
class
TestRay
{
@Test
public
void
testCreatingRay
()
{
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment