Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Bioimage Analysis
3D Mesh ROI
Commits
4f0fe4e7
Commit
4f0fe4e7
authored
Dec 01, 2021
by
Stéphane DALLONGEVILLE
Browse files
Updated for Icy kernel 2.4.0 (interruptible process)
parent
61a2dd73
Changes
2
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
4f0fe4e7
...
...
@@ -7,11 +7,11 @@
<parent>
<groupId>
org.bioimageanalysis.icy
</groupId>
<artifactId>
parent-pom-plugin
</artifactId>
<version>
1.0.
1
</version>
<version>
1.0.
6
</version>
</parent>
<artifactId>
3d-mesh-roi
</artifactId>
<version>
1.4.
7
</version>
<version>
1.4.
8
</version>
<packaging>
jar
</packaging>
...
...
src/main/java/plugins/adufour/roi/mesh/ROI3DMesh.java
View file @
4f0fe4e7
...
...
@@ -1834,25 +1834,25 @@ public abstract class ROI3DMesh<C extends Cell3D> extends ROI3D
}
@Override
public
BooleanMask2D
getBooleanMask2D
(
final
int
z
,
final
boolean
inclusive
)
public
BooleanMask2D
getBooleanMask2D
(
final
int
z
,
final
boolean
inclusive
)
throws
InterruptedException
{
return
getROIMask
().
getBooleanMask2D
(
z
,
inclusive
);
}
@Override
public
BooleanMask3D
getBooleanMask
(
final
boolean
inclusive
)
public
BooleanMask3D
getBooleanMask
(
final
boolean
inclusive
)
throws
InterruptedException
{
return
getROIMask
().
getBooleanMask
(
inclusive
);
}
@Override
public
double
getNumberOfContourPoints
()
public
double
getNumberOfContourPoints
()
throws
InterruptedException
{
return
getROIMask
().
getNumberOfContourPoints
();
}
@Override
public
double
getNumberOfPoints
()
public
double
getNumberOfPoints
()
throws
InterruptedException
{
return
getROIMask
().
getNumberOfPoints
();
}
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment