Skip to content
Snippets Groups Projects
Commit aa63e251 authored by Radek Ošlejšek's avatar Radek Ošlejšek
Browse files

Updates in JavaDoc

parent bc5f6d81
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,8 @@ import java.util.List; ...@@ -5,7 +5,8 @@ import java.util.List;
import java.util.stream.Collectors; import java.util.stream.Collectors;
/** /**
* Representation of mesh in memory using corner table * Representation of mesh in memory using corner table.
* Face = triangle.
* *
* @author Matej Lukes * @author Matej Lukes
*/ */
...@@ -201,9 +202,10 @@ public class CornerTable { ...@@ -201,9 +202,10 @@ public class CornerTable {
.map(corner -> getIndexOfFace(rows.indexOf(corner))) .map(corner -> getIndexOfFace(rows.indexOf(corner)))
.collect(Collectors.toList()); .collect(Collectors.toList());
} }
/** /**
* returns indexes of vertices of triangle * returns indexes of vertices of triangle
*
* @param triangleIndex index of triangle * @param triangleIndex index of triangle
* @return list of indexes * @return list of indexes
*/ */
......
...@@ -71,6 +71,7 @@ public class MeshFacetImpl implements MeshFacet { ...@@ -71,6 +71,7 @@ public class MeshFacetImpl implements MeshFacet {
return ret; return ret;
} }
@Override
public BoundingBox getBoundingBox() { public BoundingBox getBoundingBox() {
return new BoundingBox(this.vertices); return new BoundingBox(this.vertices);
} }
......
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