-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/shbang91/rpc into develop
- Loading branch information
Showing
79 changed files
with
199,387 additions
and
76 deletions.
There are no files selected for viewing
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
This file contains 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 characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<mujoco model="bread-visual"> | ||
<asset> | ||
<mesh file="meshes/bread.stl" name="bread_mesh" scale="0.8 0.8 0.8"/> | ||
</asset> | ||
<worldbody> | ||
<body> | ||
<body name="object"> | ||
<geom pos="0 0 0" mesh="bread_mesh" type="mesh" rgba="0.8 0.8 0.8 0.3" conaffinity="0" contype="0" group="1" mass="0.0001"/> | ||
</body> | ||
<site rgba="0 0 0 0" size="0.005" pos="0 0 -0.045" name="bottom_site"/> | ||
<site rgba="0 0 0 0" size="0.005" pos="0 0 0.03" name="top_site"/> | ||
<site rgba="0 0 0 0" size="0.005" pos="0.03 0.03 0" name="horizontal_radius_site"/> | ||
</body> | ||
</worldbody> | ||
</mujoco> |
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<mujoco model="bread"> | ||
<asset> | ||
<mesh file="meshes/bread.stl" name="bread_mesh" scale="2 0.3 2"/> | ||
<texture file="../textures/bread.png" type="2d" name="tex-bread" /> | ||
<material name="bread" reflectance="0.7" texrepeat="15 15" texture="tex-bread" texuniform="true"/> | ||
</asset> | ||
<worldbody> | ||
<body> | ||
<body name="object"> | ||
<geom pos="0 0 0" mesh="bread_mesh" type="mesh" solimp="0.998 0.998 0.001" solref="0.001 1" density="50" friction="0.95 0.3 0.1" material="bread" group="0" condim="4"/> | ||
</body> | ||
<site rgba="0 0 0 0" size="0.005" pos="0 0 -0.045" name="bottom_site"/> | ||
<site rgba="0 0 0 0" size="0.005" pos="0 0 0.03" name="top_site"/> | ||
<site rgba="0 0 0 0" size="0.005" pos="0.03 0.03 0" name="horizontal_radius_site"/> | ||
</body> | ||
</worldbody> | ||
</mujoco> |
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,149 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- from https://github.com/vikashplus/mj_envs/tree/master/mj_envs/hand_manipulation_suite/assets --> | ||
<!-- Information about door can be found in this paper: https://arxiv.org/pdf/1709.10087.pdf --> | ||
|
||
<mujoco model="brush"> | ||
<asset> | ||
<texture file="../textures/light-wood.png" type="cube" name="light-wood" /> | ||
<texture file="../textures/dark-wood.png" type="cube" name="dark-wood" /> | ||
<material name="MatDarkWood" texture="dark-wood" texrepeat="3 3" specular="0.4" shininess="0.1" /> | ||
<material name="MatLightWood" texture="light-wood" texrepeat="3 3" specular="0.4" shininess="0.1" /> | ||
</asset> | ||
<worldbody> | ||
<body> | ||
<body name="object"> | ||
<site name="origin" pos="0 0 0" rgba="0 0 0 0" size="0.005"/> | ||
|
||
<body name="body" pos="0 0 0.02"> | ||
<geom pos="0.0 -0.02 0.0" size="0.05 0.02 0.02" type="box" friction="1 1 1" group="0" name="body" material="MatLightWood"/> | ||
<geom pos="0 0.05 0.0" size="0.006 0.05 0.01" type="box" friction="1 1 1" group="0" name="handle" material="MatLightWood"/> | ||
|
||
<site name="handle" pos="0 0.05 0" rgba="0 0 0 0" size="0.02"/> | ||
|
||
<inertial pos="0. 0 0" quat="0.5 0.5 0.5 0.5" mass="0.01" diaginertia="0.0001 0.0001 0.0001" /> | ||
<body name="furs" pos="0 -0.04 0"> | ||
|
||
<joint name="joint_brush" | ||
type="ball" | ||
stiffness="5.0" springref="0.0" damping="0.01" | ||
/> | ||
<inertial pos="0. 0 0" mass="0.01" diaginertia="0.0001 0.0001 0.0001" /> | ||
|
||
<body name="fur_row1" pos="-0.04 0 0"> | ||
<body pos="0 0 -0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
</body> | ||
|
||
<body name="fur_row2" pos="-0.03 0 0"> | ||
<body pos="0 0 -0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
</body> | ||
|
||
<body name="fur_row3" pos="-0.02 0 0"> | ||
<body pos="0 0 -0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
</body> | ||
|
||
<body name="fur_row4" pos="-0.01 0 0"> | ||
<body pos="0 0 -0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
</body> | ||
|
||
<body name="fur_row5" pos="0 0 0"> | ||
<body pos="0 0 -0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
</body> | ||
|
||
<body name="fur_row6" pos="0.01 0 0"> | ||
<body pos="0 0 -0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
</body> | ||
|
||
<body name="fur_row7" pos="0.02 0 0"> | ||
<body pos="0 0 -0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
</body> | ||
|
||
<body name="fur_row8" pos="0.03 0 0"> | ||
<body pos="0 0 -0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
</body> | ||
|
||
<body name="fur_row9" pos="0.04 0 0"> | ||
<body pos="0 0 -0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
<body pos="0 0 0.01"> | ||
<geom fromto="0 0 0 0 -0.05 0" size="0.003" type="cylinder" group="0" material="MatDarkWood"/> | ||
</body> | ||
</body> | ||
|
||
</body> | ||
</body> | ||
|
||
</body> | ||
<site name="bottom_site" pos="0 0 -0.6" rgba="0 0 0 0" size="0.005"/> | ||
<site name="top_site" pos="0 0 0.6" rgba="0 0 0 0" size="0.005"/> | ||
<site name="horizontal_radius_site" pos="0.3 0 0" rgba="0 0 0 0" size="0.1"/> | ||
</body> | ||
</worldbody> | ||
</mujoco> |
Oops, something went wrong.