Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Geoloc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
PET Computação
Geoloc
Merge requests
!2
Adicionado as classes Tile e PointD
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Adicionado as classes Tile e PointD
Modelagem
into
develop
Overview
0
Commits
2
Changes
2
Merged
Davisson Henrique Paulino
requested to merge
Modelagem
into
develop
9 years ago
Overview
0
Commits
2
Changes
2
Expand
0
0
Merge request reports
Viewing commit
41f90126
Prev
Next
Show latest version
2 files
+
71
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
41f90126
Adicionado as classes Tile e PointD
· 41f90126
Davisson Henrique Paulino
authored
9 years ago
app/src/main/java/ufpr/inf/pet/geoloc/PointD.java
0 → 100644
+
33
−
0
Options
package ufpr.inf.pet.geoloc;
/**
* Created by pet on 20/05/15.
*/
public class PointD {
private double x;
private double y;
public double getX() {
return x;
}
public void setX(double x) {
this.x = x;
}
public double getY() {
return y;
}
public void setY(double y) {
this.y = y;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("(").append(x).append(",").append(y).append(")");
return sb.toString();
}
}
Loading