Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Aliaksandr Halavatyi
AutoMicTools
Commits
bff4869c
Commit
bff4869c
authored
Apr 21, 2021
by
Aliaksandr Halavatyi
Browse files
added class to define position with rotation
parent
8b826a93
Changes
2
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
bff4869c
...
...
@@ -14,7 +14,7 @@
-->
<groupId>
embl.almf
</groupId>
<artifactId>
AutoMicTools_
</artifactId>
<version>
1.1.1
8
-SNAPSHOT
</version>
<version>
1.1.1
9
-SNAPSHOT
</version>
<name>
plugins/AutoMicTools_.jar
</name>
<description>
Collection of tools for automated (feedback) microscopy data acquisition and analysis
</description>
...
...
src/main/java/automic/geom/Position3DWithRotation.java
0 → 100644
View file @
bff4869c
package
automic.geom
;
public
class
Position3DWithRotation
extends
Point3D
{
private
Double
angle
;
public
Position3DWithRotation
(
Double
_x
,
Double
_y
,
Double
_z
,
Double
_angle
)
{
super
(
_x
,
_y
,
_z
);
angle
=
_angle
;
}
public
Double
getAngle
(){
return
angle
;
}
public
void
setAngle
(
Double
_angle
)
{
angle
=
_angle
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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