File tree Expand file tree Collapse file tree 2 files changed +10
-29
lines changed
src/main/java/com/neuronrobotics/sdk/addons/kinematics Expand file tree Collapse file tree 2 files changed +10
-29
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,15 @@ File buildDir = file(".");
99
1010Properties props = new Properties ()
1111props. 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+
2021manifest {
2122 attributes(
2223 " Manifest-Version" : " 1.0" ,
Original file line number Diff line number Diff 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 ());
You can’t perform that action at this time.
0 commit comments