Created
September 23, 2019 13:33
-
-
Save philipptempel/b5fc4a185b6317aa86bb45cdc29e8517 to your computer and use it in GitHub Desktop.
Revisions
-
Philipp Tempel created this gist
Sep 23, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,127 @@ import cdpyr def ipanema_cuboid(): r = cdpyr.robot.Robot( frame=cdpyr.robot.Frame( anchors=[ cdpyr.robot.FrameAnchor( position=[-1.0, 1.0, 1.0] ), cdpyr.robot.FrameAnchor( position=[1.0, 1.0, 1.0] ), cdpyr.robot.FrameAnchor( position=[1.0, -1.0, 1.0] ), cdpyr.robot.FrameAnchor( position=[-1.0, -1.0, 1.0] ), cdpyr.robot.FrameAnchor( position=[-1.0, 1.0, -1.0] ), cdpyr.robot.FrameAnchor( position=[1.0, 1.0, -1.0] ), cdpyr.robot.FrameAnchor( position=[1.0, -1.0, -1.0] ), cdpyr.robot.FrameAnchor( position=[-1.0, -1.0, -1.0] ), ] ), platforms=[ cdpyr.robot.Platform( motionpattern=cdpyr.motion.Motionpattern._3R3T, anchors=[ cdpyr.robot.PlatformAnchor( position=[-0.1, 0.1, 0.1] ), cdpyr.robot.PlatformAnchor( position=[0.1, 0.1, 0.1] ), cdpyr.robot.PlatformAnchor( position=[0.1, -0.1, 0.1] ), cdpyr.robot.PlatformAnchor( position=[-0.1, -0.1, 0.1] ), cdpyr.robot.PlatformAnchor( position=[-0.1, 0.1, -0.1] ), cdpyr.robot.PlatformAnchor( position=[0.1, 0.1, -0.1] ), cdpyr.robot.PlatformAnchor( position=[0.1, -0.1, -0.1] ), cdpyr.robot.PlatformAnchor( position=[-0.1, -0.1, -0.1] ), ] ) ], cables=[ cdpyr.robot.Cable( name="Dyneema", material="Liros D-Pro SK78", diameter=6 / 1000, color="red" ), cdpyr.robot.Cable( name="Dyneema", material="Liros D-Pro SK78", diameter=6 / 1000, color="red" ), cdpyr.robot.Cable( name="Dyneema", material="Liros D-Pro SK78", diameter=6 / 1000, color="red" ), cdpyr.robot.Cable( name="Dyneema", material="Liros D-Pro SK78", diameter=6 / 1000, color="red" ), cdpyr.robot.Cable( name="Dyneema", material="Liros D-Pro SK78", diameter=6 / 1000, color="red" ), cdpyr.robot.Cable( name="Dyneema", material="Liros D-Pro SK78", diameter=6 / 1000, color="red" ), cdpyr.robot.Cable( name="Dyneema", material="Liros D-Pro SK78", diameter=6 / 1000, color="red" ), cdpyr.robot.Cable( name="Dyneema", material="Liros D-Pro SK78", diameter=6 / 1000, color="red" ), ], kinematic_chains={ (0, 0, 4, 0), (1, 0, 5, 1), (2, 0, 6, 2), (3, 0, 7, 3), (4, 0, 0, 4), (5, 0, 1, 5), (6, 0, 2, 6), (7, 0, 3, 7) } ) return r