Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Analyst WebApp
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fidentis
Analyst WebApp
Commits
1876fc70
There was an error fetching the commit references. Please try again later.
Commit
1876fc70
authored
3 years ago
by
Radek Ošlejšek
Browse files
Options
Downloads
Patches
Plain Diff
Added getName() to HumanFace
parent
fdf994ff
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Comparison/src/main/java/cz/fidentis/analyst/face/HumanFace.java
+11
-1
11 additions, 1 deletion
...son/src/main/java/cz/fidentis/analyst/face/HumanFace.java
with
11 additions
and
1 deletion
Comparison/src/main/java/cz/fidentis/analyst/face/HumanFace.java
+
11
−
1
View file @
1876fc70
...
...
@@ -170,7 +170,7 @@ public class HumanFace implements MeshListener, Serializable {
}
/**
* Return unique ID of the face.
* Return
s
unique ID of the face.
*
* @return unique ID of the face.
*/
...
...
@@ -178,6 +178,16 @@ public class HumanFace implements MeshListener, Serializable {
return
this
.
id
;
}
/**
* Returns short name of the face distilled from the file name. May not be unique.
* @return short name of the face distilled from the file name
*/
public
String
getName
()
{
String
name
=
id
.
substring
(
0
,
id
.
lastIndexOf
(
'.'
));
// remove extention
name
=
name
.
substring
(
id
.
lastIndexOf
(
'/'
)+
1
,
name
.
length
());
return
name
;
}
/**
* Returns already computed k-d tree of the triangular mesh or {@code null}.
* @return Already computed k-d tree of the triangular mesh or {@code null}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment