-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1b3dff0
commit abac238
Showing
4 changed files
with
291 additions
and
32 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<?xml version="1.0"?> | ||
<robot name="horizontal_flap"> | ||
<!-- Vertical bar (base) --> | ||
<link name="vertical_bar"> | ||
<visual> | ||
<origin xyz="0 0 0.1" rpy="0 0 0"/> | ||
<geometry> | ||
<cylinder radius="0.005" length="0.2"/> | ||
</geometry> | ||
<material name="gray"> | ||
<color rgba="1 1 1 1"/> | ||
</material> | ||
</visual> | ||
<collision> | ||
<origin xyz="0 0 0.1" rpy="0 0 0"/> | ||
<geometry> | ||
<cylinder radius="0.005" length="0.2"/> | ||
</geometry> | ||
</collision> | ||
<inertial> | ||
<mass value="0.0005"/> | ||
<origin xyz="0 0 0" rpy="0 0 0"/> | ||
<inertia | ||
ixx="0.0001" ixy="0" ixz="0" | ||
iyy="0.0001" iyz="0" | ||
izz="0.0001"/> | ||
</inertial> | ||
</link> | ||
|
||
|
||
<!-- Horizontal flap --> | ||
<link name="horizontal_flap"> | ||
<visual> | ||
<origin xyz="0 0 0" rpy="0 0 0"/> | ||
<geometry> | ||
<box size="0.2 0.08 0.003"/> | ||
</geometry> | ||
<material name="box_color_horizontal_flap"> | ||
<color rgba="1 1 0.5 1"/> | ||
</material> | ||
</visual> | ||
<collision> | ||
<origin xyz="0 0 0" rpy="0 0 0"/> | ||
<geometry> | ||
<box size="0.2 0.08 0.003"/> | ||
</geometry> | ||
</collision> | ||
<inertial> | ||
<mass value="0.0005"/> | ||
<origin xyz="0 0 0" rpy="0 0 0"/> | ||
<inertia | ||
ixx="0.0001" ixy="0" ixz="0" | ||
iyy="0.0001" iyz="0" | ||
izz="0.0001"/> | ||
</inertial> | ||
</link> | ||
|
||
<joint name="flap_hinge_joint" type="continuous"> | ||
<parent link="vertical_bar"/> | ||
<child link="horizontal_flap"/> | ||
<origin xyz="0 0 0.16" rpy="1.5707963267948966 0 0"/> | ||
<axis xyz="0 1 0"/> | ||
<dynamics damping="0.0001" friction="0.0001"/> | ||
<limit lower="-3.141592653589793" upper="3.141592653589793"/> | ||
</joint> | ||
|
||
|
||
</robot> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
<?xml version="1.0"?> | ||
<robot name="horizontal_flap"> | ||
<!-- Vertical bar (base) --> | ||
<link name="vertical_bar"> | ||
<visual> | ||
<origin xyz="0 0 0.1" rpy="0 0 0"/> | ||
<geometry> | ||
<cylinder radius="0.005" length="0.2"/> | ||
</geometry> | ||
<material name="gray"> | ||
<color rgba="1 1 1 1"/> | ||
</material> | ||
</visual> | ||
<collision> | ||
<origin xyz="0 0 0.1" rpy="0 0 0"/> | ||
<geometry> | ||
<cylinder radius="0.005" length="0.2"/> | ||
</geometry> | ||
</collision> | ||
<inertial> | ||
<mass value="0.001"/> | ||
<origin xyz="0 0 0" rpy="0 0 0"/> | ||
<inertia | ||
ixx="0.001" ixy="0" ixz="0" | ||
iyy="0.001" iyz="0" | ||
izz="0.001"/> | ||
</inertial> | ||
</link> | ||
|
||
|
||
<!-- Horizontal flap --> | ||
<link name="horizontal_flap"> | ||
<visual> | ||
<origin xyz="0 0 0" rpy="0 0 0"/> | ||
<geometry> | ||
<box size="0.2 0.08 0.003"/> | ||
</geometry> | ||
<material name="box_color_horizontal_flap"> | ||
<color rgba="1 1 0.5 1"/> | ||
</material> | ||
</visual> | ||
<collision> | ||
<origin xyz="0 0 0" rpy="0 0 0"/> | ||
<geometry> | ||
<box size="0.2 0.08 0.003"/> | ||
</geometry> | ||
</collision> | ||
<inertial> | ||
<mass value="0.001"/> | ||
<origin xyz="0 0 0" rpy="0 0 0"/> | ||
<inertia | ||
ixx="0.002" ixy="0" ixz="0" | ||
iyy="0.002" iyz="0" | ||
izz="0.002"/> | ||
</inertial> | ||
</link> | ||
|
||
<joint name="flap_hinge_joint" type="continuous"> | ||
<parent link="vertical_bar"/> | ||
<child link="horizontal_flap"/> | ||
<origin xyz="0 0 0.16" rpy="1.5707963267948966 0 0"/> | ||
<axis xyz="0 1 0"/> | ||
<dynamics damping="0.001" friction="0.001"/> | ||
<limit lower="-3.141592653589793" upper="3.141592653589793"/> | ||
</joint> | ||
|
||
|
||
</robot> |
Oops, something went wrong.