We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feb3b37 commit c93624cCopy full SHA for c93624c
MiraLink.groovy
@@ -26,7 +26,7 @@ if(args == null){
26
DHParameterKinematics arm = base.getAllDHChains().get(0)
27
ArrayList<DHLink> dhLinks=arm.getChain().getLinks();
28
DHLink dh = dhLinks.get(0);
29
- args=[dh,(int)2]
+ args=[dh,(int)2] // args = [dh_parameters, joint #] !!!Pass extra parameters into here if I need them from external script
30
}
31
32
CSG reverseDHValues(CSG incoming,DHLink dh ){
@@ -43,5 +43,6 @@ if(args == null){
43
44
45
CSG DummyStandInForLink = new Cube(20).toCSG()
46
+//here i need to define the shape(s) that will result in a new link for the arm
47
48
return [moveDHValues(DummyStandInForLink,args[0])]
0 commit comments