Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
b8d4090
getting started
tomsilver May 5, 2024
36eaa11
wip
tomsilver May 5, 2024
b3bf4de
wip
tomsilver May 5, 2024
bf899b1
wip
tomsilver May 5, 2024
d238666
wip
tomsilver May 5, 2024
2169e3b
wip
tomsilver May 5, 2024
b5b80b2
wip
tomsilver May 5, 2024
b37b01d
wip
tomsilver May 5, 2024
b398611
wi
tomsilver May 6, 2024
51230db
wip
tomsilver May 6, 2024
b5b1381
wip
tomsilver May 6, 2024
c265491
wip
tomsilver May 6, 2024
21714b7
fixes
tomsilver May 6, 2024
af9f77c
wip
tomsilver May 6, 2024
2a4f1f4
minor
tomsilver May 6, 2024
b455cf7
wip
tomsilver May 7, 2024
3c39e0a
wip
tomsilver May 7, 2024
e6b99d6
wip
tomsilver May 7, 2024
1242b40
wip
tomsilver May 7, 2024
9d36067
wip
tomsilver May 7, 2024
32f312d
fix
tomsilver May 7, 2024
a288edb
wip
tomsilver May 7, 2024
e637d85
wip
tomsilver May 7, 2024
17fceff
wip
tomsilver May 7, 2024
acc02ad
wip
tomsilver May 7, 2024
2059307
wip
tomsilver May 8, 2024
366ff4f
wip
tomsilver May 8, 2024
77d5500
wip
tomsilver May 8, 2024
9cc0e32
wip
tomsilver May 8, 2024
b6b1265
wip
tomsilver May 8, 2024
46aeb5e
cleanup
tomsilver May 8, 2024
5e2bcc3
Merge branch 'master' of github.com:Learning-and-Intelligent-Systems/…
tomsilver May 8, 2024
06e5475
modify gitignore
Jun 29, 2024
057e25d
fix small error in pybullet-coffee; able to reproduce the assert self…
Jun 29, 2024
5bec0aa
add reset to held_obj_to_base_link
Jun 29, 2024
f7dec8a
add coffee_jug_init_rot_amt
Jun 29, 2024
62b2f70
get launch script working
NishanthJKumar Apr 28, 2025
ff20c35
comment out a flag
NishanthJKumar Apr 28, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ machines.txt
tests/_fake_trajs
tests/_fake_results
sas_plan
.vscode
Gymnasium-Robotics/
downward/

# Jetbrains IDEs
.idea/
24 changes: 24 additions & 0 deletions predicators/envs/assets/urdf/cup.urdf
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<robot name="cup_model">
<link name="cup">
<inertial>
<mass value="0.2" />
<!-- center of mass (com) is defined w.r.t. link local coordinate system -->
<origin xyz="0 0 0.06" />
<inertia ixx="0.1" ixy="0.0" ixz="0.0" iyy="0.1" iyz="0.0" izz="0.1" />
</inertial>
<visual>
<!-- visual origin is defined w.r.t. link local coordinate system -->
<origin xyz="0 0 0" rpy="0 0 0" />
<geometry>
<mesh filename="meshes/cup.dae" scale=".1 .1 .1" />
</geometry>
</visual>
<collision>
<!-- collision origin is defined w.r.t. link local coordinate system -->
<origin xyz="0 0 0" rpy="0 0 0" />
<geometry>
<mesh filename="meshes/cup.dae" scale=".1 .1 .1" />
</geometry>
</collision>
</link>
</robot>
68 changes: 68 additions & 0 deletions predicators/envs/assets/urdf/kettle.urdf
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<?xml version="1.0" ?>
<robot name="partnet_f7b327fc497ad638490ad276cd2af3a4">
<link name="base"/>
<link name="link_0">
<visual name="lid-1">
<origin xyz="0 0 0"/>
<geometry>
<mesh filename="textured_objs/original-2.obj"/>
</geometry>
</visual>
<collision>
<origin xyz="0 0 0"/>
<geometry>
<mesh filename="textured_objs/original-2.obj"/>
</geometry>
</collision>
</link>
<joint name="joint_0" type="prismatic">
<origin xyz="0 0 0"/>
<axis xyz="0 1 0"/>
<child link="link_0"/>
<parent link="link_1"/>
<limit lower="0" upper="0.008000000000000007"/>
</joint>
<link name="link_1">
<visual name="handle-2">
<origin xyz="0 0 0"/>
<geometry>
<mesh filename="textured_objs/original-3.obj"/>
</geometry>
</visual>
<visual name="base_body-3">
<origin xyz="0 0 0"/>
<geometry>
<mesh filename="textured_objs/original-4.obj"/>
</geometry>
</visual>
<visual name="base_body-3">
<origin xyz="0 0 0"/>
<geometry>
<mesh filename="textured_objs/original-1.obj"/>
</geometry>
</visual>
<collision>
<origin xyz="0 0 0"/>
<geometry>
<mesh filename="textured_objs/original-3.obj"/>
</geometry>
</collision>
<collision>
<origin xyz="0 0 0"/>
<geometry>
<mesh filename="textured_objs/original-4.obj"/>
</geometry>
</collision>
<collision>
<origin xyz="0 0 0"/>
<geometry>
<mesh filename="textured_objs/original-1.obj"/>
</geometry>
</collision>
</link>
<joint name="joint_1" type="fixed">
<origin rpy="1.570796326794897 0 -1.570796326794897" xyz="0 0 0"/>
<child link="link_1"/>
<parent link="base"/>
</joint>
</robot>
63 changes: 63 additions & 0 deletions predicators/envs/assets/urdf/meshes/cup.dae

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions predicators/envs/assets/urdf/textured_objs/original-1.mtl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
newmtl material_0_0
illum 3
d 1
Ns 30
Kd 1 1 1
Ks 0.06666666666666667 0.06666666666666667 0.06666666666666667
map_Kd ../images/texture_0.jpg

newmtl material_1_0
illum 3
d 1
Ns 30
Kd 0.4196078431372549 0.3843137254901961 0.39215686274509803
Ks 0.06666666666666667 0.06666666666666667 0.06666666666666667
Loading
Loading