Skip to content

Commit 9709234

Browse files
committed
Add moveit packages and change launcher
1 parent 6ce2299 commit 9709234

98 files changed

Lines changed: 25759 additions & 13 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
cmake_minimum_required(VERSION 3.5)
2+
project(ros2srrc_ur5_gazebo)
3+
4+
# Default to C99
5+
if(NOT CMAKE_C_STANDARD)
6+
set(CMAKE_C_STANDARD 99)
7+
endif()
8+
9+
# Default to C++14
10+
if(NOT CMAKE_CXX_STANDARD)
11+
set(CMAKE_CXX_STANDARD 14)
12+
endif()
13+
14+
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
15+
add_compile_options(-Wall -Wextra -Wpedantic)
16+
endif()
17+
18+
# find dependencies
19+
find_package(ament_cmake REQUIRED)
20+
# uncomment the following section in order to fill in
21+
# further dependencies manually.
22+
# find_package(<dependency> REQUIRED)
23+
24+
if(BUILD_TESTING)
25+
find_package(ament_lint_auto REQUIRED)
26+
# the following line skips the linter which checks for copyrights
27+
# uncomment the line when a copyright and license is not present in all source files
28+
#set(ament_cmake_copyright_FOUND TRUE)
29+
# the following line skips cpplint (only works in a git repo)
30+
# uncomment the line when this package is not in a git repo
31+
#set(ament_cmake_cpplint_FOUND TRUE)
32+
ament_lint_auto_find_test_dependencies()
33+
endif()
34+
35+
install(
36+
DIRECTORY
37+
meshes
38+
models
39+
config
40+
urdf
41+
worlds
42+
DESTINATION
43+
share/${PROJECT_NAME}
44+
)
45+
46+
ament_package()
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# ROS 2 Sim-to-Real Robot Control: UR5 Robot.
2+
Configurations:
3+
4+
- ID: "ur5_1"
5+
Name: "UR5 on top of Robot Stand."
6+
urdf: "ur5.urdf.xacro"
7+
rob: "ur5"
8+
ee: "none"
9+
10+
- ID: "ur5_2"
11+
Name: "UR5 + Robotiq 2f-85 gripper on top of Robot Stand."
12+
urdf: "ur5_robotiq_2f85.urdf.xacro"
13+
rob: "ur5"
14+
ee: "robotiq_2f85"
15+
16+
- ID: "ur5_3"
17+
Name: "UR5 + Robotiq HandE gripper on top of Robot Stand."
18+
urdf: "ur5_robotiq_hande.urdf.xacro"
19+
rob: "ur5"
20+
ee: "robotiq_hande"
21+
22+
- ID: "ur5_4"
23+
Name: "UR5 + Robotiq 2f-85 gripper + INDEPENDENT Yamaha linear actuator"
24+
urdf: "ur5_robotiq_2f85_yamaha.urdf.xacro"
25+
rob: "ur5"
26+
ee: "robotiq_2f85"
27+
28+
- ID: "ur5_5"
29+
Name: "UR5 + Robotiq 2f-85 gripper + MOVEIT2-controlled Yamaha linear actuator"
30+
urdf: "ur5_robotiq_2f85_yamaha_moveit.urdf.xacro"
31+
rob: "ur5"
32+
ee: "robotiq_2f85"
33+
34+
- ID: "ur5_6"
35+
Name: "UR5 + Vacuum-Gripper on top of Yamaha linear actuator"
36+
urdf: "ur5_ls_vgr_yamaha.urdf.xacro"
37+
rob: "ur5"
38+
ee: "ls_vgr"
39+
40+
- ID: "ur5_7"
41+
Name: "UR5 + Robotiq HandE gripper on top of Robot Stand."
42+
urdf: "ur5_robotiq_2f85_with_cams.urdf.xacro"
43+
rob: "ur5"
44+
ee: "robotiq_2f85"
45+
46+
47+
48+
49+
Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
objects:
2+
blue_sphere:
3+
shape: sphere
4+
size: 0.03
5+
pose: {x: 0.45, y: 0.25, z: 1, roll: 0, pitch: 0, yaw: 0}
6+
color: blue
7+
8+
red_sphere:
9+
shape: sphere
10+
size: 0.03
11+
pose: {x: 0.45, y: -0.25, z: 1, roll: 0, pitch: 0, yaw: 0}
12+
color: red
13+
14+
green_sphere:
15+
shape: sphere
16+
size: 0.03
17+
pose: {x: 0.45, y: 0.09, z: 1, roll: 0, pitch: 0, yaw: 0}
18+
color: green
19+
20+
yellow_sphere:
21+
shape: sphere
22+
size: 0.04
23+
pose: {x: 0.45, y: -0.09, z: 1, roll: 0, pitch: 0, yaw: 0}
24+
color: yellow
25+
26+
green_cylinder:
27+
shape: cylinder
28+
size: {radius: 0.03, height: 0.05}
29+
pose: {x: 0.65, y: -0.09, z: 1, roll: 0, pitch: 0, yaw: 0}
30+
color: green
31+
32+
yellow_cylinder:
33+
shape: cylinder
34+
size: {radius: 0.02, height: 0.06}
35+
pose: {x: 0.65, y: 0.25, z: 1, roll: 0, pitch: 0, yaw: 0}
36+
color: yellow
37+
38+
red_cylinder:
39+
shape: cylinder
40+
size: {radius: 0.02, height: 0.06}
41+
pose: {x: 0.65, y: 0.09, z: 1, roll: 0, pitch: 0, yaw: 0}
42+
color: red
43+
44+
blue_cylinder:
45+
shape: cylinder
46+
size: {radius: 0.04, height: 0.07}
47+
pose: {x: 0.65, y: -0.25, z: 1, roll: 0, pitch: 0, yaw: 0}
48+
color: blue
49+
50+
obstacles:
51+
conveyor:
52+
shape: box
53+
size: {x: 0.8, y: 2.4, z: 0.1}
54+
pose: {x: 0.6, y: 0, z: 0.95, roll: 0, pitch: 0, yaw: 0}
55+
56+
# target:
57+
# shape: box
58+
# size: {x: 0.5, y: 0.5, z: 0.35}
59+
# pose: {x: -0.5, y: 0.0, z: 0.76, roll: 0, pitch: 0, yaw: 0}
60+
61+
targets:
62+
target1: {x: -0.68, y: -0.18, z: 1}
63+
target2: {x: -0.68, y: -0.06, z: 1}
64+
target3: {x: -0.68, y: 0.06, z: 1}
65+
target4: {x: -0.68, y: 0.18, z: 1}
66+
target5: {x: -0.56, y: -0.18, z: 1}
67+
target6: {x: -0.56, y: -0.06, z: 1}
68+
target7: {x: -0.56, y: 0.06, z: 1}
69+
target8: {x: -0.56, y: 0.18, z: 1}
70+
target9: {x: -0.44, y: -0.18, z: 1}
71+
target10: {x: -0.44, y: -0.06, z: 1}
72+
target11: {x: -0.44, y: 0.06, z: 1}
73+
target12: {x: -0.44, y: 0.18, z: 1}
74+
target13: {x: -0.32, y: -0.18, z: 1}
75+
target14: {x: -0.32, y: -0.06, z: 1}
76+
target15: {x: -0.32, y: 0.06, z: 1}
77+
target16: {x: -0.32, y: 0.18, z: 1}
78+
79+
robot:
80+
pose: {x: 0, y: 0, z: 1.2, roll: 0, pitch: 0, yaw: 0}
81+

Industrial/ros2_SimRealRobotControl_gz/packages/ur5/ros2srrc_ur5_gazebo/meshes/kinetic.dae

Lines changed: 137 additions & 0 deletions
Large diffs are not rendered by default.
325 Bytes
Loading
155 KB
Binary file not shown.
325 Bytes
Loading
Lines changed: 174 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3+
<asset>
4+
<contributor>
5+
<author>Blender User</author>
6+
<authoring_tool>Blender 2.83.1 commit date:2020-06-25, commit time:09:47, hash:8289fc688b3e</authoring_tool>
7+
</contributor>
8+
<created>2020-07-07T23:38:31</created>
9+
<modified>2020-07-07T23:38:31</modified>
10+
<unit name="meter" meter="1"/>
11+
<up_axis>Z_UP</up_axis>
12+
</asset>
13+
<library_cameras>
14+
<camera id="Camera-camera" name="Camera">
15+
<optics>
16+
<technique_common>
17+
<perspective>
18+
<xfov sid="xfov">39.59775</xfov>
19+
<aspect_ratio>1.777778</aspect_ratio>
20+
<znear sid="znear">0.1</znear>
21+
<zfar sid="zfar">100</zfar>
22+
</perspective>
23+
</technique_common>
24+
</optics>
25+
<extra>
26+
<technique profile="blender">
27+
<shiftx sid="shiftx" type="float">0</shiftx>
28+
<shifty sid="shifty" type="float">0</shifty>
29+
<dof_distance sid="dof_distance" type="float">10</dof_distance>
30+
</technique>
31+
</extra>
32+
</camera>
33+
</library_cameras>
34+
<library_lights>
35+
<light id="Light-light" name="Light">
36+
<technique_common>
37+
<point>
38+
<color sid="color">1000 1000 1000</color>
39+
<constant_attenuation>1</constant_attenuation>
40+
<linear_attenuation>0</linear_attenuation>
41+
<quadratic_attenuation>0.00111109</quadratic_attenuation>
42+
</point>
43+
</technique_common>
44+
<extra>
45+
<technique profile="blender">
46+
<type sid="type" type="int">0</type>
47+
<flag sid="flag" type="int">0</flag>
48+
<mode sid="mode" type="int">1</mode>
49+
<gamma sid="blender_gamma" type="float">1</gamma>
50+
<red sid="red" type="float">1</red>
51+
<green sid="green" type="float">1</green>
52+
<blue sid="blue" type="float">1</blue>
53+
<shadow_r sid="blender_shadow_r" type="float">0</shadow_r>
54+
<shadow_g sid="blender_shadow_g" type="float">0</shadow_g>
55+
<shadow_b sid="blender_shadow_b" type="float">0</shadow_b>
56+
<energy sid="blender_energy" type="float">1000</energy>
57+
<dist sid="blender_dist" type="float">29.99998</dist>
58+
<spotsize sid="spotsize" type="float">75</spotsize>
59+
<spotblend sid="spotblend" type="float">0.15</spotblend>
60+
<att1 sid="att1" type="float">0</att1>
61+
<att2 sid="att2" type="float">1</att2>
62+
<falloff_type sid="falloff_type" type="int">2</falloff_type>
63+
<clipsta sid="clipsta" type="float">0.04999995</clipsta>
64+
<clipend sid="clipend" type="float">30.002</clipend>
65+
<bias sid="bias" type="float">1</bias>
66+
<soft sid="soft" type="float">3</soft>
67+
<bufsize sid="bufsize" type="int">2880</bufsize>
68+
<samp sid="samp" type="int">3</samp>
69+
<buffers sid="buffers" type="int">1</buffers>
70+
<area_shape sid="area_shape" type="int">1</area_shape>
71+
<area_size sid="area_size" type="float">0.1</area_size>
72+
<area_sizey sid="area_sizey" type="float">0.1</area_sizey>
73+
<area_sizez sid="area_sizez" type="float">1</area_sizez>
74+
</technique>
75+
</extra>
76+
</light>
77+
</library_lights>
78+
<library_effects>
79+
<effect id="Material-effect">
80+
<profile_COMMON>
81+
<technique sid="common">
82+
<lambert>
83+
<emission>
84+
<color sid="emission">0 0 0 1</color>
85+
</emission>
86+
<diffuse>
87+
<color sid="diffuse">0.008528705 0.2346173 0.8000001 1</color>
88+
</diffuse>
89+
<index_of_refraction>
90+
<float sid="ior">1.45</float>
91+
</index_of_refraction>
92+
</lambert>
93+
</technique>
94+
</profile_COMMON>
95+
</effect>
96+
</library_effects>
97+
<library_images/>
98+
<library_materials>
99+
<material id="Material-material" name="Material">
100+
<instance_effect url="#Material-effect"/>
101+
</material>
102+
</library_materials>
103+
<library_geometries>
104+
<geometry id="Cube-mesh" name="Cube">
105+
<mesh>
106+
<source id="Cube-mesh-positions">
107+
<float_array id="Cube-mesh-positions-array" count="144">0.3 0.3 -0.00999999 0.3 -0.3 -0.00999999 -0.3 0.3 -0.00999999 -0.3 -0.3 -0.00999999 -0.3 -0.27 -0.00999999 0.3 -0.27 -0.00999999 0.3 0.2715 -0.00999999 -0.3 0.2715 -0.00999999 0.27 0.3 -0.00999999 0.27 -0.3 -0.00999999 0.27 -0.27 -0.00999999 0.27 -0.27 0.00999999 0.27 0.2715 0.00999999 0.27 0.2715 -0.00999999 -0.2715 0.3 -0.00999999 -0.2715 -0.27 -0.00999999 -0.2715 0.2715 -0.00999999 -0.2715 -0.3 -0.00999999 -0.2715 -0.27 0.00999999 -0.2715 0.2715 0.00999999 -0.3 -0.27 0.3497115 -0.3 -0.3 0.3497115 -0.2715 0.3 0.3497115 -0.3 0.3 0.3497115 0.3 0.3 0.2444727 0.3 0.3 0.2244727 -0.3 -0.3 0.3697115 0.3 -0.3 0.2444727 0.3 -0.3 0.2244727 -0.3 0.3 0.3697115 -0.2715 -0.3 0.3697115 0.3 -0.27 0.2444727 0.27 -0.3 0.2244727 -0.3 0.2715 0.3697115 0.27 0.3 0.2444727 0.3 0.2715 0.2244727 -0.3 0.2715 0.3497115 0.3 0.2715 0.2444727 -0.3 -0.27 0.3697115 0.3 -0.27 0.2244727 0.27 -0.27 0.2444727 0.27 0.2715 0.2444727 0.27 0.3 0.2244727 0.27 -0.3 0.2444727 -0.2715 -0.3 0.3497115 -0.2715 0.3 0.3697115 -0.2715 -0.27 0.3697115 -0.2715 0.2715 0.3697115</float_array>
108+
<technique_common>
109+
<accessor source="#Cube-mesh-positions-array" count="48" stride="3">
110+
<param name="X" type="float"/>
111+
<param name="Y" type="float"/>
112+
<param name="Z" type="float"/>
113+
</accessor>
114+
</technique_common>
115+
</source>
116+
<source id="Cube-mesh-normals">
117+
<float_array id="Cube-mesh-normals-array" count="30">0 0 -1 0 1 0 1 0 0 -1 0 0 0 -1 0 0 0 1 0.2253327 0 0.9742819 0.2253324 0 0.9742819 0.2253333 0 0.9742817 0.2253334 0 0.9742818</float_array>
118+
<technique_common>
119+
<accessor source="#Cube-mesh-normals-array" count="10" stride="3">
120+
<param name="X" type="float"/>
121+
<param name="Y" type="float"/>
122+
<param name="Z" type="float"/>
123+
</accessor>
124+
</technique_common>
125+
</source>
126+
<source id="Cube-mesh-map-0">
127+
<float_array id="Cube-mesh-map-0-array" count="552">0.375 0.7375 0.3625 0.75 0.3625 0.7375 0.3625 0.5 0.375 0.5 0.375 0.5 0.8631249 0.511875 0.863125 0.7375 0.863125 0.7375 0.375 0.511875 0.3625 0.7375 0.3625 0.511875 0.125 0.7375 0.125 0.511875 0.125 0.511875 0.8631249 0.511875 0.6375 0.5118749 0.8631249 0.511875 0.375 0.5 0.375 0.511875 0.375 0.511875 0.375 0.5 0.3625 0.511875 0.3625 0.5 0.136875 0.75 0.125 0.75 0.125 0.75 0.863125 0.7375 0.6375 0.7375 0.6375 0.7375 0.3625 0.5 0.136875 0.511875 0.136875 0.5 0.6375 0.7375 0.6375 0.5118749 0.6375 0.5118749 0.125 0.5 0.136875 0.5 0.136875 0.5 0.3625 0.511875 0.136875 0.7375 0.136875 0.511875 0.375 0.75 0.3625 0.75 0.3625 0.75 0.3625 0.7375 0.136875 0.75 0.136875 0.7375 0.136875 0.75 0.3625 0.75 0.136875 0.75 0.375 0.7375 0.375 0.75 0.375 0.75 0.136875 0.7375 0.125 0.75 0.125 0.7375 0.125 0.75 0.125 0.7375 0.125 0.7375 0.136875 0.511875 0.125 0.7375 0.125 0.511875 0.136875 0.5 0.125 0.511875 0.125 0.5 0.125 0.511875 0.125 0.5 0.125 0.5 0.8631249 0.511875 0.6375 0.7375 0.6375 0.5118749 0.136875 0.5 0.3625 0.5 0.3625 0.5 0.375 0.511875 0.375 0.7375 0.375 0.7375 0.875 0.7375 0.863125 0.75 0.863125 0.7375 0.625 0.988125 0.375 1 0.375 0.988125 0.625 0.238125 0.375 0.25 0.375 0.238125 0.625 0.7375 0.375 0.75 0.375 0.7375 0.625 0.4875 0.375 0.5 0.375 0.4875 0.625 0.5118749 0.375 0.7375 0.375 0.511875 0.625 0 0.375 0.01249998 0.375 0 0.875 0.511875 0.863125 0.7375 0.8631249 0.511875 0.875 0.5 0.8631249 0.511875 0.863125 0.5 0.625 0.5 0.375 0.511875 0.375 0.5 0.625 0.01249998 0.375 0.238125 0.375 0.01249998 0.6375 0.5 0.625 0.5118749 0.625 0.5 0.6375 0.5118749 0.625 0.7375 0.625 0.5118749 0.375 0.261875 0.625 0.4875 0.375 0.4875 0.625 0.75 0.375 0.7625 0.375 0.75 0.6375 0.7375 0.625 0.75 0.625 0.7375 0.625 0.25 0.375 0.261875 0.375 0.25 0.863125 0.5 0.6375 0.5118749 0.6375 0.5 0.625 0.7624999 0.375 0.988125 0.375 0.7625 0.863125 0.7375 0.6375 0.75 0.6375 0.7375 0.375 0.7375 0.375 0.75 0.3625 0.75 0.3625 0.5 0.3625 0.5 0.375 0.5 0.8631249 0.511875 0.8631249 0.511875 0.863125 0.7375 0.375 0.511875 0.375 0.7375 0.3625 0.7375 0.125 0.7375 0.125 0.7375 0.125 0.511875 0.8631249 0.511875 0.6375 0.5118749 0.6375 0.5118749 0.375 0.5 0.375 0.5 0.375 0.511875 0.375 0.5 0.375 0.511875 0.3625 0.511875 0.136875 0.75 0.136875 0.75 0.125 0.75 0.863125 0.7375 0.863125 0.7375 0.6375 0.7375 0.3625 0.5 0.3625 0.511875 0.136875 0.511875 0.6375 0.7375 0.6375 0.7375 0.6375 0.5118749 0.125 0.5 0.125 0.5 0.136875 0.5 0.3625 0.511875 0.3625 0.7375 0.136875 0.7375 0.375 0.75 0.375 0.75 0.3625 0.75 0.3625 0.7375 0.3625 0.75 0.136875 0.75 0.136875 0.75 0.3625 0.75 0.3625 0.75 0.375 0.7375 0.375 0.7375 0.375 0.75 0.136875 0.7375 0.136875 0.75 0.125 0.75 0.125 0.75 0.125 0.75 0.125 0.7375 0.136875 0.511875 0.136875 0.7375 0.125 0.7375 0.136875 0.5 0.136875 0.511875 0.125 0.511875 0.125 0.511875 0.125 0.511875 0.125 0.5 0.8631249 0.511875 0.863125 0.7375 0.6375 0.7375 0.136875 0.5 0.136875 0.5 0.3625 0.5 0.375 0.511875 0.375 0.511875 0.375 0.7375 0.875 0.7375 0.875 0.75 0.863125 0.75 0.625 0.988125 0.625 1 0.375 1 0.625 0.238125 0.625 0.25 0.375 0.25 0.625 0.7375 0.625 0.75 0.375 0.75 0.625 0.4875 0.625 0.5 0.375 0.5 0.625 0.5118749 0.625 0.7375 0.375 0.7375 0.625 0 0.625 0.01249998 0.375 0.01249998 0.875 0.511875 0.875 0.7375 0.863125 0.7375 0.875 0.5 0.875 0.511875 0.8631249 0.511875 0.625 0.5 0.625 0.5118749 0.375 0.511875 0.625 0.01249998 0.625 0.238125 0.375 0.238125 0.6375 0.5 0.6375 0.5118749 0.625 0.5118749 0.6375 0.5118749 0.6375 0.7375 0.625 0.7375 0.375 0.261875 0.625 0.261875 0.625 0.4875 0.625 0.75 0.625 0.7624999 0.375 0.7625 0.6375 0.7375 0.6375 0.75 0.625 0.75 0.625 0.25 0.625 0.261875 0.375 0.261875 0.863125 0.5 0.8631249 0.511875 0.6375 0.5118749 0.625 0.7624999 0.625 0.988125 0.375 0.988125 0.863125 0.7375 0.863125 0.75 0.6375 0.75</float_array>
128+
<technique_common>
129+
<accessor source="#Cube-mesh-map-0-array" count="276" stride="2">
130+
<param name="S" type="float"/>
131+
<param name="T" type="float"/>
132+
</accessor>
133+
</technique_common>
134+
</source>
135+
<vertices id="Cube-mesh-vertices">
136+
<input semantic="POSITION" source="#Cube-mesh-positions"/>
137+
</vertices>
138+
<triangles material="Material-material" count="92">
139+
<input semantic="VERTEX" source="#Cube-mesh-vertices" offset="0"/>
140+
<input semantic="NORMAL" source="#Cube-mesh-normals" offset="1"/>
141+
<input semantic="TEXCOORD" source="#Cube-mesh-map-0" offset="2" set="0"/>
142+
<p>5 0 0 9 0 1 10 0 2 8 1 3 25 1 4 0 1 5 19 2 6 46 2 7 18 2 8 6 0 9 10 0 10 13 0 11 4 3 12 36 3 13 7 3 14 19 4 15 41 4 16 47 4 17 0 2 18 35 2 19 6 2 20 0 0 21 13 0 22 8 0 23 17 4 24 21 4 25 3 4 26 18 1 27 40 1 28 11 1 29 8 0 30 16 0 31 14 0 32 11 3 33 41 3 34 12 3 35 2 1 36 22 1 37 14 1 38 13 0 39 15 0 40 16 0 41 1 4 42 32 4 43 9 4 44 10 0 45 17 0 46 15 0 47 17 4 48 32 4 49 44 4 50 5 2 51 28 2 52 1 2 53 15 0 54 3 0 55 4 0 56 3 3 57 20 3 58 4 3 59 16 0 60 4 0 61 7 0 62 14 0 63 7 0 64 2 0 65 7 3 66 23 3 67 2 3 68 19 5 69 11 5 70 12 5 71 14 1 72 42 1 73 8 1 74 6 2 75 39 2 76 5 2 77 38 5 78 30 5 79 46 5 80 30 4 81 21 4 82 44 4 83 33 3 84 23 3 85 36 3 86 31 2 87 28 2 88 39 2 89 34 1 90 25 1 91 42 1 92 37 2 93 39 2 94 35 2 95 26 3 96 20 3 97 21 3 98 33 5 99 46 5 100 47 5 101 29 5 102 47 5 103 45 5 104 24 2 105 35 2 106 25 2 107 38 3 108 36 3 109 20 3 110 34 5 111 37 5 112 24 5 113 41 5 114 31 5 115 37 5 116 22 1 117 34 1 118 42 1 119 27 4 120 32 4 121 28 4 122 40 5 123 27 5 124 31 5 125 29 1 126 22 1 127 23 1 128 45 6 129 41 6 130 34 6 131 43 4 132 44 4 133 32 4 134 46 7 135 43 7 136 40 7 137 5 0 138 1 0 139 9 0 140 8 1 141 42 1 142 25 1 143 19 2 144 47 2 145 46 2 146 6 0 147 5 0 148 10 0 149 4 3 150 20 3 151 36 3 152 19 4 153 12 4 154 41 4 155 0 2 156 25 2 157 35 2 158 0 0 159 6 0 160 13 0 161 17 4 162 44 4 163 21 4 164 18 1 165 46 1 166 40 1 167 8 0 168 13 0 169 16 0 170 11 3 171 40 3 172 41 3 173 2 1 174 23 1 175 22 1 176 13 0 177 10 0 178 15 0 179 1 4 180 28 4 181 32 4 182 10 0 183 9 0 184 17 0 185 17 4 186 9 4 187 32 4 188 5 2 189 39 2 190 28 2 191 15 0 192 17 0 193 3 0 194 3 3 195 21 3 196 20 3 197 16 0 198 15 0 199 4 0 200 14 0 201 16 0 202 7 0 203 7 3 204 36 3 205 23 3 206 19 5 207 18 5 208 11 5 209 14 1 210 22 1 211 42 1 212 6 2 213 35 2 214 39 2 215 38 5 216 26 5 217 30 5 218 30 4 219 26 4 220 21 4 221 33 3 222 29 3 223 23 3 224 31 2 225 27 2 226 28 2 227 34 1 228 24 1 229 25 1 230 37 2 231 31 2 232 39 2 233 26 3 234 38 3 235 20 3 236 33 5 237 38 5 238 46 5 239 29 5 240 33 5 241 47 5 242 24 2 243 37 2 244 35 2 245 38 3 246 33 3 247 36 3 248 34 5 249 41 5 250 37 5 251 41 5 252 40 5 253 31 5 254 22 1 255 45 1 256 34 1 257 27 4 258 43 4 259 32 4 260 40 5 261 43 5 262 27 5 263 29 1 264 45 1 265 22 1 266 45 8 267 47 8 268 41 8 269 43 4 270 30 4 271 44 4 272 46 9 273 30 9 274 43 9 275</p>
143+
</triangles>
144+
</mesh>
145+
</geometry>
146+
</library_geometries>
147+
<library_visual_scenes>
148+
<visual_scene id="Scene" name="Scene">
149+
<node id="Camera" name="Camera" type="NODE">
150+
<matrix sid="transform">0.6859207 -0.3240135 0.6515582 7.358891 0.7276763 0.3054208 -0.6141704 -6.925791 0 0.8953956 0.4452714 4.958309 0 0 0 1</matrix>
151+
<instance_camera url="#Camera-camera"/>
152+
</node>
153+
<node id="Light" name="Light" type="NODE">
154+
<matrix sid="transform">-0.2908646 -0.7711008 0.5663932 4.076245 0.9551712 -0.1998834 0.2183912 1.005454 -0.05518906 0.6045247 0.7946723 5.903862 0 0 0 1</matrix>
155+
<instance_light url="#Light-light"/>
156+
</node>
157+
<node id="Cube" name="Cube" type="NODE">
158+
<matrix sid="transform">1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 1</matrix>
159+
<instance_geometry url="#Cube-mesh" name="Cube">
160+
<bind_material>
161+
<technique_common>
162+
<instance_material symbol="Material-material" target="#Material-material">
163+
<bind_vertex_input semantic="UVMap" input_semantic="TEXCOORD" input_set="0"/>
164+
</instance_material>
165+
</technique_common>
166+
</bind_material>
167+
</instance_geometry>
168+
</node>
169+
</visual_scene>
170+
</library_visual_scenes>
171+
<scene>
172+
<instance_visual_scene url="#Scene"/>
173+
</scene>
174+
</COLLADA>
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?xml version="1.0" ?>
2+
<model>
3+
<name>blue_target</name>
4+
<version>1.0</version>
5+
<sdf version="1.6">model.sdf</sdf>
6+
<author>
7+
<name></name>
8+
<email></email>
9+
</author>
10+
<description></description>
11+
</model>

0 commit comments

Comments
 (0)