Newer
Older
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import java.util.List;
/**
*
* @author Matej Kovar
*/
public class FaceGeometryInfo {
private String verticesInfo;
private String facetsInfo;
private List<String> featurePointsInfo;
/**
* Face geometry info of face
* @param verticesInfo String number of vertices
* @param facetsInfo String number of facets
* @param featurePointsInfo List of feature points
*/
public FaceGeometryInfo(String verticesInfo, String facetsInfo, List<String> featurePointsInfo) {
this.verticesInfo = verticesInfo;
this.facetsInfo = facetsInfo;
this.featurePointsInfo = featurePointsInfo;
}
public String getVerticesInfo() {
return verticesInfo;
}
public void setVerticesInfo(String verticesInfo) {
this.verticesInfo = verticesInfo;
}
public String getFecetsInfo() {
return facetsInfo;
}
public void setFecetsInfo(String fecetsInfo) {
this.facetsInfo = fecetsInfo;
}
public List<String> getFeaturePointsInfo() {
return featurePointsInfo;
}
public void setFeaturePointsInfo(List<String> featurePointsInfo) {
this.featurePointsInfo = featurePointsInfo;
}
}