Skip to content

Commit e99434b

Browse files
author
Kevin Harrington
committed
pass the event of base relative motion up
1 parent 9bd28a0 commit e99434b

File tree

2 files changed

+10
-29
lines changed

2 files changed

+10
-29
lines changed

build.gradle

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,15 @@ File buildDir = file(".");
99

1010
Properties props = new Properties()
1111
props.load(new FileInputStream(buildDir.getAbsolutePath()+"/src/main/resources/com/neuronrobotics/sdk/config/build.properties"))
12-
sourceSets {
13-
14-
test {
15-
java {
16-
srcDirs = ["test/java/src","examples/java/src" ] // Note @Peter's comment below
17-
}
18-
}
19-
}
12+
//sourceSets {
13+
//
14+
// test {
15+
// java {
16+
// srcDirs = ["test/java/src" ] // Note @Peter's comment below
17+
// }
18+
// }
19+
//}
20+
2021
manifest {
2122
attributes(
2223
"Manifest-Version": "1.0",

src/main/java/com/neuronrobotics/sdk/addons/kinematics/MobileBase.java

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -853,27 +853,7 @@ public void setFiducialToGlobalTransform(TransformNR globe) {
853853
setGlobalToFiducialTransform(globe);
854854
}
855855

856-
/**
857-
* Sets the global to fiducial transform.
858-
*
859-
* @param frameToBase the new global to fiducial transform
860-
*/
861-
@Override
862-
public void setGlobalToFiducialTransform(TransformNR frameToBase) {
863-
super.setGlobalToFiducialTransform(frameToBase);
864-
fireBaseUpdates();
865-
}
866-
867-
/**
868-
* Sets the global to fiducial transform.
869-
*
870-
* @param frameToBase the new global to fiducial transform
871-
*/
872-
@Override
873-
public void setRobotToFiducialTransform(TransformNR baseToFiducial) {
874-
super.setRobotToFiducialTransform( baseToFiducial);
875-
fireBaseUpdates();
876-
}
856+
877857

878858
private void fireBaseUpdates() {
879859
TransformNR frameToBase = forwardOffset(new TransformNR());

0 commit comments

Comments
 (0)