Skip to content
Snippets Groups Projects
Commit b2efad16 authored by Matej Lukes's avatar Matej Lukes
Browse files

bug fixes

parent 8a33b87c
No related branches found
No related tags found
No related merge requests found
...@@ -27,4 +27,8 @@ public class CornerTableRow { ...@@ -27,4 +27,8 @@ public class CornerTableRow {
public int getOppositeCornerIndex() { public int getOppositeCornerIndex() {
return oppositeCornerIndex; return oppositeCornerIndex;
} }
public void setOppositeCornerIndex(int index) {
this.oppositeCornerIndex = index;
}
} }
...@@ -19,5 +19,13 @@ public class MeshFacet { ...@@ -19,5 +19,13 @@ public class MeshFacet {
public void addVertex(MeshPoint point){ public void addVertex(MeshPoint point){
vertexes.add(point); vertexes.add(point);
} }
public int getNumberOfVertexes() {
return vertexes.size();
}
public CornerTable getCornerTable() {
return cornerTable;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment