mirror of
https://github.com/PotentiaRobotics/engine-software.git
synced 2025-04-09 23:00:21 -04:00
Add Atlas model
This commit is contained in:
parent
df97475a65
commit
824d10299e
23
simulation/atlas/controllers/Makefile
Normal file
23
simulation/atlas/controllers/Makefile
Normal file
|
@ -0,0 +1,23 @@
|
|||
# Copyright 1996-2020 Cyberbotics Ltd.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
TARGETS=hello_world_demo.Makefile
|
||||
|
||||
.PHONY: release debug profile clean
|
||||
|
||||
release debug profile clean: $(TARGETS)
|
||||
|
||||
%.Makefile:
|
||||
+@echo "# make" $(MAKECMDGOALS) $(@:.Makefile=)
|
||||
+@make -s -C $(@:.Makefile=) $(MAKECMDGOALS)
|
25
simulation/atlas/controllers/hello_world_demo/Makefile
Normal file
25
simulation/atlas/controllers/hello_world_demo/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# Copyright 1996-2020 Cyberbotics Ltd.
|
||||
#
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
#
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
#
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
# Webots Makefile system
|
||||
#
|
||||
# You may add some variable definitions hereafter to customize the build process
|
||||
# See documentation in $(WEBOTS_HOME_PATH)/resources/Makefile.include
|
||||
|
||||
|
||||
# Do not modify the following: this includes Webots global Makefile.include
|
||||
null :=
|
||||
space := $(null) $(null)
|
||||
WEBOTS_HOME_PATH=$(subst $(space),\ ,$(strip $(subst \,/,$(WEBOTS_HOME))))
|
||||
include $(WEBOTS_HOME_PATH)/resources/Makefile.include
|
|
@ -0,0 +1,74 @@
|
|||
/*
|
||||
* Copyright 1996-2020 Cyberbotics Ltd.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Description: Simple hello controller
|
||||
*/
|
||||
|
||||
#include <webots/device.h>
|
||||
#include <webots/motor.h>
|
||||
#include <webots/robot.h>
|
||||
|
||||
#include <math.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#define TIME_STEP 16
|
||||
|
||||
void my_step() {
|
||||
if (wb_robot_step(TIME_STEP) == -1) {
|
||||
wb_robot_cleanup();
|
||||
exit(EXIT_SUCCESS);
|
||||
}
|
||||
}
|
||||
|
||||
int main(int argc, char **argv) {
|
||||
wb_robot_init();
|
||||
|
||||
// list devices
|
||||
int n_devices = wb_robot_get_number_of_devices();
|
||||
int i;
|
||||
printf("Available devices:\n");
|
||||
for (i = 0; i < n_devices; i++) {
|
||||
WbDeviceTag tag = wb_robot_get_device_by_index(i);
|
||||
const char *name = wb_device_get_name(tag);
|
||||
printf(" Device #%d name = %s\n", i, name);
|
||||
}
|
||||
|
||||
WbDeviceTag l_arm_shx = wb_robot_get_device("LArmShx");
|
||||
WbDeviceTag r_arm_shx = wb_robot_get_device("RArmShx");
|
||||
WbDeviceTag r_arm_elx = wb_robot_get_device("RArmElx");
|
||||
|
||||
double l_arm_shx_target = -1.396;
|
||||
double r_arm_shx_target = -0.77;
|
||||
|
||||
int n_steps_to_achieve__target = 1000 / TIME_STEP; // 1 second
|
||||
for (i = 0; i < n_steps_to_achieve__target; i++) {
|
||||
double ratio = (double)i / n_steps_to_achieve__target;
|
||||
wb_motor_set_position(l_arm_shx, l_arm_shx_target * ratio);
|
||||
wb_motor_set_position(r_arm_shx, r_arm_shx_target * ratio);
|
||||
my_step();
|
||||
}
|
||||
|
||||
double initTime = wb_robot_get_time();
|
||||
while (true) {
|
||||
double time = wb_robot_get_time() - initTime;
|
||||
wb_motor_set_position(r_arm_elx, 0.3 * sin(5 * time) - 0.3);
|
||||
my_step();
|
||||
};
|
||||
|
||||
return EXIT_FAILURE;
|
||||
}
|
Binary file not shown.
9
simulation/atlas/controllers/test/test.py
Normal file
9
simulation/atlas/controllers/test/test.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
from controller import Supervisor
|
||||
|
||||
while True:
|
||||
# all body names are found above in the body names list
|
||||
body = Supervisor.getFromDef(body_name)
|
||||
center_of_mass = body.getCenterOfMass()
|
||||
print(center_of_mass)
|
||||
# center_of_mass is a list with 3 values, the x y and z coord of the COM
|
||||
|
11
simulation/atlas/protos/.Atlas.cache
Normal file
11
simulation/atlas/protos/.Atlas.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 15682c79e781302c431ea54fe1fe37ea
|
||||
needsRobotAncestor: 1
|
||||
baseType: Robot
|
||||
slotType:
|
||||
parameters: translation,rotation,name,controller,controllerArgs,customData,supervisor,synchronization,pelvisSlot
|
||||
tags:
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl: https://www.cyberbotics.com/doc/guide/atlas
|
||||
info: The\s"Atlas"\sis\sa\shumanoid\srobot\sdeveloped\sby\sBoston\sDynamics\swith\sfunding\sand\soversight\sfrom\sDARPA.\nExtracted\sfrom:\shttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.CarbonFiberAppearance.cache
Normal file
11
simulation/atlas/protos/.CarbonFiberAppearance.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 5696ce83640a491c6bc8dd55483c5f3f
|
||||
needsRobotAncestor: 0
|
||||
baseType: PBRAppearance
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info:
|
11
simulation/atlas/protos/.DarkAppearance.cache
Normal file
11
simulation/atlas/protos/.DarkAppearance.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: de8ec1a886533bbfd05529ed3e5eb811
|
||||
needsRobotAncestor: 0
|
||||
baseType: PBRAppearance
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info:
|
11
simulation/atlas/protos/.HeadMesh.cache
Normal file
11
simulation/atlas/protos/.HeadMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: ff63079bce1faadde603bd3f077469be
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/head.dae\n
|
11
simulation/atlas/protos/.LClavMesh.cache
Normal file
11
simulation/atlas/protos/.LClavMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 7b0aa246250539f1f91c6912e5eb003d
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_clav.dae\n
|
11
simulation/atlas/protos/.LClavSolid.cache
Normal file
11
simulation/atlas/protos/.LClavSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: c3d3e9a5bc275ac9f5630f7f68d76306
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.LFarmMesh.cache
Normal file
11
simulation/atlas/protos/.LFarmMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 4ebd637ac7b2b8af09be26b51c8f25d8
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_farm.dae\n
|
11
simulation/atlas/protos/.LFarmSolid.cache
Normal file
11
simulation/atlas/protos/.LFarmSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: b08b890ca81b18143f2dc4a7f70cc247
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.LFootMesh.cache
Normal file
11
simulation/atlas/protos/.LFootMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: ac1748823d4fea6461cd89cabc85599e
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_foot.dae\n
|
11
simulation/atlas/protos/.LFootSolid.cache
Normal file
11
simulation/atlas/protos/.LFootSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 85f089b8b57022a3fe5c41f09e6f69f8
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.LHandMesh.cache
Normal file
11
simulation/atlas/protos/.LHandMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 291ee12bf4e288a96675751cd8946e44
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_hand.dae\n
|
11
simulation/atlas/protos/.LHandSolid.cache
Normal file
11
simulation/atlas/protos/.LHandSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 287b886531f29947d7cc43b4de98908a
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.LLarmMesh.cache
Normal file
11
simulation/atlas/protos/.LLarmMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: acb06c1478307172f7d5f4e777dd7001
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_larm.dae\n
|
11
simulation/atlas/protos/.LLarmSolid.cache
Normal file
11
simulation/atlas/protos/.LLarmSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: bd46a96ad07bf67565a6547383b9f396
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.LLglutMesh.cache
Normal file
11
simulation/atlas/protos/.LLglutMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 54010b9cd8260be7bb6491ad055dcbbe
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_lglut.dae\n
|
11
simulation/atlas/protos/.LLglutSolid.cache
Normal file
11
simulation/atlas/protos/.LLglutSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: ac1864c641a044f1fadbcf2bf50ee178
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.LLlegMesh.cache
Normal file
11
simulation/atlas/protos/.LLlegMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 48725c6fdca53f90e5aa8ee7bc5e26d1
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_lleg.dae\n
|
11
simulation/atlas/protos/.LLlegSolid.cache
Normal file
11
simulation/atlas/protos/.LLlegSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: c862161045c1b40efea562d6878c2b9e
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.LScapMesh.cache
Normal file
11
simulation/atlas/protos/.LScapMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: fe63f9178176de625d4cee8b96c1892f
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_scap.dae\n
|
11
simulation/atlas/protos/.LScapSolid.cache
Normal file
11
simulation/atlas/protos/.LScapSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: bf5d121a774828be377cd8b218c55091
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.LTalusMesh.cache
Normal file
11
simulation/atlas/protos/.LTalusMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 207be872246106c60d566dac8ccf00e5
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_talus.dae\n
|
11
simulation/atlas/protos/.LTalusSolid.cache
Normal file
11
simulation/atlas/protos/.LTalusSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 3fba617979743f7ed81e5050fea0f762
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.LUarmMesh.cache
Normal file
11
simulation/atlas/protos/.LUarmMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: d31319efa55ca0b6864b02481465f756
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_uarm.dae\n
|
11
simulation/atlas/protos/.LUarmSolid.cache
Normal file
11
simulation/atlas/protos/.LUarmSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 61288d29135a9e46212a0107f054f86b
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.LUglutMesh.cache
Normal file
11
simulation/atlas/protos/.LUglutMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 9ab77b3a9e079d9fbd45509a91d24ecd
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_uglut.dae\n
|
11
simulation/atlas/protos/.LUglutSolid.cache
Normal file
11
simulation/atlas/protos/.LUglutSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 0cf6b283f791090d1291fbc9c5ad2ef8
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.LUlegMesh.cache
Normal file
11
simulation/atlas/protos/.LUlegMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 8144a85c5933e9f937d12ad7f112a727
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_uleg.dae\n
|
11
simulation/atlas/protos/.LUlegSolid.cache
Normal file
11
simulation/atlas/protos/.LUlegSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 5ce7ee6f23fa08e0ddd37b7d25c10f13
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.LtorsoMesh.cache
Normal file
11
simulation/atlas/protos/.LtorsoMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: e300a7426352d4aacd98bb3ba0004687
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/ltorso.dae\n
|
11
simulation/atlas/protos/.LtorsoSolid.cache
Normal file
11
simulation/atlas/protos/.LtorsoSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: d2bdc6c7ddef9a4853c0b5a73d29a9ff
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.MtorsoMesh.cache
Normal file
11
simulation/atlas/protos/.MtorsoMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 7cc2494d103602e618fea919170898b1
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/mtorso.dae\n
|
11
simulation/atlas/protos/.MtorsoSolid.cache
Normal file
11
simulation/atlas/protos/.MtorsoSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 4e79b0883c52c60acaa7130377a3a479
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.PelvisMesh.cache
Normal file
11
simulation/atlas/protos/.PelvisMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: da4345b7678efed37b6f60be1170ea00
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/pelvis.dae\n
|
11
simulation/atlas/protos/.PelvisSolid.cache
Normal file
11
simulation/atlas/protos/.PelvisSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 0defad1ae34ddbfb97684e90efa01306
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RClavMesh.cache
Normal file
11
simulation/atlas/protos/.RClavMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 83ccae525d786abb00657a3decf95c8c
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_clav.dae\n
|
11
simulation/atlas/protos/.RClavSolid.cache
Normal file
11
simulation/atlas/protos/.RClavSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: ebaef60727f1db5f902b0a8ebe4c946f
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RFarmMesh.cache
Normal file
11
simulation/atlas/protos/.RFarmMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: b79a987d5f5c139c3af54dc5c614678c
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_farm.dae\n
|
11
simulation/atlas/protos/.RFarmSolid.cache
Normal file
11
simulation/atlas/protos/.RFarmSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 0524ede24ae6d71c923ea5c6373edd4a
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RFootMesh.cache
Normal file
11
simulation/atlas/protos/.RFootMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 2e1b978cfcba92f75c0fa5f50a2b3f37
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_foot.dae\n
|
11
simulation/atlas/protos/.RFootSolid.cache
Normal file
11
simulation/atlas/protos/.RFootSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 22240e83ed32e9f14ccf50a02a8e02db
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RHandMesh.cache
Normal file
11
simulation/atlas/protos/.RHandMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 86c2dd740f906bd9fdd01b2071fd5430
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_hand.dae\n
|
11
simulation/atlas/protos/.RHandSolid.cache
Normal file
11
simulation/atlas/protos/.RHandSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 3428422d6980f6576b83dbebcbb6d81e
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RLarmMesh.cache
Normal file
11
simulation/atlas/protos/.RLarmMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 4b275a60561d7c06ac86b3041fd6dd90
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_larm.dae\n
|
11
simulation/atlas/protos/.RLarmSolid.cache
Normal file
11
simulation/atlas/protos/.RLarmSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 1583fe4470848752f9d00ad3c9f2466c
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RLglutMesh.cache
Normal file
11
simulation/atlas/protos/.RLglutMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: ce693bf1f64f72ca63b60b0f29a93cfa
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_lglut.dae\n
|
11
simulation/atlas/protos/.RLglutSolid.cache
Normal file
11
simulation/atlas/protos/.RLglutSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: fba50d6ba2eea796da8e48c7ae5014c8
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RLlegMesh.cache
Normal file
11
simulation/atlas/protos/.RLlegMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: be970f8ed6f7375ebdc3922281bed0f7
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_lleg.dae\n
|
11
simulation/atlas/protos/.RLlegSolid.cache
Normal file
11
simulation/atlas/protos/.RLlegSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 4dc0edc53a3010ceca88cb3327a1186f
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RLugMesh.cache
Normal file
11
simulation/atlas/protos/.RLugMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 4e403d96d4ea7fe08c02c30717d4e260
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_lug.dae\n
|
11
simulation/atlas/protos/.RScapMesh.cache
Normal file
11
simulation/atlas/protos/.RScapMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 9944d53dda4a7ebb45e9e8e03866323b
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_scap.dae\n
|
11
simulation/atlas/protos/.RScapSolid.cache
Normal file
11
simulation/atlas/protos/.RScapSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: d863184f3695a256a4db8046142a1c8e
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RTalusMesh.cache
Normal file
11
simulation/atlas/protos/.RTalusMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: ac70ae0f2c6cac75e1c1a2aa6ffc87d4
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_talus.dae\n
|
11
simulation/atlas/protos/.RTalusSolid.cache
Normal file
11
simulation/atlas/protos/.RTalusSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 870305c872f1635ddc3e457f46901fd4
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RUarmMesh.cache
Normal file
11
simulation/atlas/protos/.RUarmMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 67d50bdb4342d0c9db456a2043591c23
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_uarm.dae\n
|
11
simulation/atlas/protos/.RUarmSolid.cache
Normal file
11
simulation/atlas/protos/.RUarmSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 0f52bd10f9b07f69dcf08e978f42649b
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RUglutMesh.cache
Normal file
11
simulation/atlas/protos/.RUglutMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 42d01e2a2a218e0584c67885d127921e
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_uglut.dae\n
|
11
simulation/atlas/protos/.RUglutSolid.cache
Normal file
11
simulation/atlas/protos/.RUglutSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: e6c24de4ebd0feb89051b6ccf538d3b9
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RUlegMesh.cache
Normal file
11
simulation/atlas/protos/.RUlegMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: f663901d42c2204c1c57880c7b8e8851
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/r_uleg.dae\n
|
11
simulation/atlas/protos/.RUlegSolid.cache
Normal file
11
simulation/atlas/protos/.RUlegSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 23269509823d13f1ec5bd338a46a1465
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
11
simulation/atlas/protos/.RegularAppearance.cache
Normal file
11
simulation/atlas/protos/.RegularAppearance.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 525255c2710efc3962a9281eff16d4fa
|
||||
needsRobotAncestor: 0
|
||||
baseType: PBRAppearance
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info:
|
11
simulation/atlas/protos/.UtorsoMesh.cache
Normal file
11
simulation/atlas/protos/.UtorsoMesh.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: fcc4cfedae0390d282b37e46812ba9e0
|
||||
needsRobotAncestor: 0
|
||||
baseType: Group
|
||||
slotType:
|
||||
parameters:
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/utorso.dae\n
|
11
simulation/atlas/protos/.UtorsoSolid.cache
Normal file
11
simulation/atlas/protos/.UtorsoSolid.cache
Normal file
|
@ -0,0 +1,11 @@
|
|||
Webots Proto Cache File version 1.5
|
||||
protoFileHash: 3628aa0d30cfd094490fcd030e80dad9
|
||||
needsRobotAncestor: 0
|
||||
baseType: Solid
|
||||
slotType:
|
||||
parameters: translation,rotation
|
||||
tags: hidden
|
||||
license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
licenseUrl: https://cyberbotics.com/webots_assets_license
|
||||
documentationUrl:
|
||||
info: Extracted\sfrom:\nhttps://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf\n
|
694
simulation/atlas/protos/Atlas.proto
Normal file
694
simulation/atlas/protos/Atlas.proto
Normal file
|
@ -0,0 +1,694 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# documentation url: https://www.cyberbotics.com/doc/guide/atlas
|
||||
# The "Atlas" is a humanoid robot developed by Boston Dynamics with funding and oversight from DARPA.
|
||||
# Extracted from: https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO Atlas [
|
||||
field SFVec3f translation 0 1 0 # Is `Transform.translation`.
|
||||
field SFRotation rotation 1 0 0 -1.5708 # Is `Transform.rotation`.
|
||||
field SFString name "Atlas" # Is `Solid.name`.
|
||||
field SFString controller "hello_world_demo" # Is `Robot.controller`.
|
||||
field MFString controllerArgs [] # Is `Robot.controllerArgs`.
|
||||
field SFString customData "" # Is `Robot.customData`.
|
||||
field SFBool supervisor FALSE # Is `Robot.supervisor`.
|
||||
field SFBool synchronization TRUE # Is `Robot.synchronization`.
|
||||
field MFNode pelvisSlot [] # Extends the robot with new nodes in the pelvis slot.
|
||||
]
|
||||
{
|
||||
Robot {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
Group {
|
||||
children IS pelvisSlot
|
||||
}
|
||||
PelvisSolid {
|
||||
}
|
||||
DEF BackLbz HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "BackLbz"
|
||||
maxVelocity 12
|
||||
minPosition -0.610865
|
||||
maxPosition 0.610865
|
||||
maxTorque 124.016
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 0 1
|
||||
anchor -0.0125 0 0
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation -0.0125 0 0
|
||||
rotation 0 0 1 0
|
||||
children [
|
||||
LtorsoSolid {
|
||||
}
|
||||
DEF BackMby HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "BackMby"
|
||||
maxVelocity 12
|
||||
minPosition -1.2
|
||||
maxPosition 1.28
|
||||
maxTorque 206.843
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 1 0
|
||||
anchor 0 0 0.09
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0 0.09
|
||||
rotation 0 1 0 0
|
||||
children [
|
||||
MtorsoSolid {
|
||||
}
|
||||
DEF BackUbx HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "BackUbx"
|
||||
maxVelocity 12
|
||||
minPosition -0.790809
|
||||
maxPosition 0.790809
|
||||
maxTorque 94.91
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 1 0 0
|
||||
anchor 0 0 0.05
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0 0.05
|
||||
rotation 1 0 0 0
|
||||
children [
|
||||
UtorsoSolid {
|
||||
}
|
||||
DEF LArmUsy HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "LArmUsy"
|
||||
maxVelocity 12
|
||||
minPosition -1.9635
|
||||
maxPosition 1.9635
|
||||
maxTorque 212
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 0.5 0.866025
|
||||
anchor 0.024 0.221 0.289
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0.024 0.221 0.289
|
||||
rotation 0 0.5 0.866025 0
|
||||
children [
|
||||
LClavSolid {
|
||||
}
|
||||
DEF LArmShx HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "LArmShx"
|
||||
maxVelocity 12
|
||||
minPosition -1.39626
|
||||
maxPosition 1.74533
|
||||
maxTorque 170
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 1 0 0
|
||||
anchor 0 0.075 0.036
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0.075 0.036
|
||||
rotation 1 0 0 0
|
||||
children [
|
||||
LScapSolid {
|
||||
}
|
||||
DEF LArmEly HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "LArmEly"
|
||||
maxVelocity 12
|
||||
minPosition 0
|
||||
maxPosition 3.14159
|
||||
maxTorque 114
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 1 0
|
||||
anchor 0 0.185 0
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0.185 0
|
||||
rotation 0 1 0 0
|
||||
children [
|
||||
LUarmSolid {
|
||||
}
|
||||
DEF LArmElx HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "LArmElx"
|
||||
maxVelocity 12
|
||||
minPosition 0
|
||||
maxPosition 2.35619
|
||||
maxTorque 114
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 1 0 0
|
||||
anchor 0 0.121 0.013
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0.121 0.013
|
||||
rotation 1 0 0 0
|
||||
children [
|
||||
LLarmSolid {
|
||||
}
|
||||
DEF LArmUwy HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "LArmUwy"
|
||||
maxVelocity 12
|
||||
minPosition -1.571
|
||||
maxPosition 1.571
|
||||
maxTorque 114
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 1 0
|
||||
anchor 0 0.188 -0.013
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0.188 -0.013
|
||||
rotation 0 1 0 0
|
||||
children [
|
||||
LFarmSolid {
|
||||
}
|
||||
DEF LArmMwx HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "LArmMwx"
|
||||
maxVelocity 12
|
||||
minPosition -0.436
|
||||
maxPosition 1.571
|
||||
maxTorque 60
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 1 0 0
|
||||
anchor 0 0.058 0
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0.058 0
|
||||
rotation 1 0 0 0
|
||||
children [
|
||||
LHandSolid {
|
||||
}
|
||||
]
|
||||
physics DEF DEFAULT_PHYSICS Physics {
|
||||
density -1
|
||||
mass 0.001
|
||||
inertiaMatrix [ 1 1 1 0 0 0]
|
||||
centerOfMass [0 0 0]
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
name "LArmUsy"
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
DEF NeckAy HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "NeckAy"
|
||||
maxVelocity 12
|
||||
minPosition -0.610865238
|
||||
maxPosition 1.13446401
|
||||
maxTorque 5
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 1 0
|
||||
anchor 0.01 0 0.43
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0.01 0 0.43
|
||||
rotation 0 1 0 0
|
||||
children [
|
||||
HeadMesh {
|
||||
}
|
||||
]
|
||||
name "NeckAy"
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
DEF RArmUsy HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "RArmUsy"
|
||||
maxVelocity 12
|
||||
minPosition -1.9635
|
||||
maxPosition 1.9635
|
||||
maxTorque 212
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 0.5 -0.866025
|
||||
anchor 0.024 -0.221 0.289
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0.024 -0.221 0.289
|
||||
rotation 0 0.5 -0.866025 0
|
||||
children [
|
||||
RClavSolid {
|
||||
}
|
||||
DEF RArmShx HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "RArmShx"
|
||||
maxVelocity 12
|
||||
minPosition -1.74533
|
||||
maxPosition 1.39626
|
||||
maxTorque 170
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 1 0 0
|
||||
anchor 0 -0.075 0.036
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 -0.075 0.036
|
||||
rotation 1 0 0 0
|
||||
children [
|
||||
RScapSolid {
|
||||
}
|
||||
DEF RArmEly HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "RArmEly"
|
||||
maxVelocity 12
|
||||
minPosition 0
|
||||
maxPosition 3.14159
|
||||
maxTorque 114
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 1 0
|
||||
anchor 0 -0.185 0
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 -0.185 0
|
||||
rotation 0 1 0 0
|
||||
children [
|
||||
RUarmSolid {
|
||||
}
|
||||
DEF RArmElx HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "RArmElx"
|
||||
maxVelocity 12
|
||||
minPosition -2.35619
|
||||
maxPosition 0
|
||||
maxTorque 114
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 1 0 0
|
||||
anchor 0 -0.121 0.013
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 -0.121 0.013
|
||||
rotation 1 0 0 0
|
||||
children [
|
||||
RLarmSolid {
|
||||
}
|
||||
DEF RArmUwy HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "RArmUwy"
|
||||
maxVelocity 12
|
||||
minPosition -1.571
|
||||
maxPosition 1.571
|
||||
maxTorque 114
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 1 0
|
||||
anchor 0 -0.188 -0.013
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 -0.188 -0.013
|
||||
rotation 0 1 0 0
|
||||
children [
|
||||
RFarmSolid {
|
||||
}
|
||||
DEF RArmMwx HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "RArmMwx"
|
||||
maxVelocity 12
|
||||
minPosition -1.571
|
||||
maxPosition 0.436
|
||||
maxTorque 60
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 1 0 0
|
||||
anchor 0 -0.058 0
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 -0.058 0
|
||||
rotation 1 0 0 0
|
||||
children [
|
||||
RHandSolid {
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
name "RArmUsy"
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
name "BackLbz"
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
DEF LLegUhz HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "LLegUhz"
|
||||
maxVelocity 12
|
||||
minPosition -0.32
|
||||
maxPosition 1.14
|
||||
maxTorque 110
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 0 1
|
||||
anchor 0 0.089 0
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0.089 0
|
||||
rotation 0 0 1 0
|
||||
children [
|
||||
LUglutSolid {
|
||||
}
|
||||
DEF LLegMhx HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "LLegMhx"
|
||||
maxVelocity 12
|
||||
minPosition -0.47
|
||||
maxPosition 0.495
|
||||
maxTorque 180
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 1 0 0
|
||||
anchor 0 0 0
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0 0
|
||||
rotation 1 0 0 0
|
||||
children [
|
||||
LLglutSolid {
|
||||
}
|
||||
DEF LLegLhy HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "LLegLhy"
|
||||
maxVelocity 12
|
||||
minPosition -1.75
|
||||
maxPosition 0.524
|
||||
maxTorque 260
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 1 0
|
||||
anchor 0.05 0 -0.05
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0.05 0 -0.05
|
||||
rotation 0 1 0 0
|
||||
children [
|
||||
LUlegSolid {
|
||||
}
|
||||
DEF LLegKny HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "LLegKny"
|
||||
maxVelocity 12
|
||||
minPosition 0
|
||||
maxPosition 2.45
|
||||
maxTorque 220
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 1 0
|
||||
anchor -0.05 0 -0.374
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation -0.05 0 -0.374
|
||||
rotation 0 1 0 0
|
||||
children [
|
||||
LLlegSolid {
|
||||
}
|
||||
DEF LLegUay HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "LLegUay"
|
||||
maxVelocity 12
|
||||
minPosition -0.698
|
||||
maxPosition 0.698
|
||||
maxTorque 220
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 1 0
|
||||
anchor 0 0 -0.422
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0 -0.422
|
||||
rotation 0 1 0 0
|
||||
children [
|
||||
LTalusSolid {
|
||||
}
|
||||
DEF LLegLax HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "LLegLax"
|
||||
maxVelocity 12
|
||||
minPosition -0.436
|
||||
maxPosition 0.436
|
||||
maxTorque 90
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 1 0 0
|
||||
anchor 0 0 0
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0 0
|
||||
rotation 1 0 0 0
|
||||
children [
|
||||
LFootSolid {
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
name "LLegUhz"
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
DEF RLegUhz HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "RLegUhz"
|
||||
maxVelocity 12
|
||||
minPosition -1.14
|
||||
maxPosition 0.32
|
||||
maxTorque 260
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 0 1
|
||||
anchor 0 -0.089 0
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 -0.089 0
|
||||
rotation 0 0 1 0
|
||||
children [
|
||||
RUglutSolid {
|
||||
}
|
||||
DEF RLegMhx HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "RLegMhx"
|
||||
maxVelocity 12
|
||||
minPosition -0.495
|
||||
maxPosition 0.47
|
||||
maxTorque 180
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 1 0 0
|
||||
anchor 0 0 0
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0 0
|
||||
rotation 1 0 0 0
|
||||
children [
|
||||
RLglutSolid {
|
||||
}
|
||||
DEF RLegLhy HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "RLegLhy"
|
||||
maxVelocity 12
|
||||
minPosition -1.745
|
||||
maxPosition 0.524
|
||||
maxTorque 260
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 1 0
|
||||
anchor 0.05 0 -0.05
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0.05 0 -0.05
|
||||
rotation 0 1 0 0
|
||||
children [
|
||||
RUlegSolid {
|
||||
}
|
||||
DEF RLegKny HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "RLegKny"
|
||||
maxVelocity 12
|
||||
minPosition 0
|
||||
maxPosition 2.45
|
||||
maxTorque 220
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 1 0
|
||||
anchor -0.05 0 -0.374
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation -0.05 0 -0.374
|
||||
rotation 0 1 0 0
|
||||
children [
|
||||
RLlegSolid {
|
||||
}
|
||||
DEF RLegUay HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "RLegUay"
|
||||
maxVelocity 12
|
||||
minPosition -0.698
|
||||
maxPosition 0.698
|
||||
maxTorque 220
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 0 1 0
|
||||
anchor 0 0 -0.422
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0 -0.422
|
||||
rotation 0 1 0 0
|
||||
children [
|
||||
RTalusSolid {
|
||||
}
|
||||
DEF RLegLax HingeJoint {
|
||||
device RotationalMotor {
|
||||
name "RLegLax"
|
||||
maxVelocity 12
|
||||
minPosition -0.436
|
||||
maxPosition 0.436
|
||||
maxTorque 90
|
||||
}
|
||||
jointParameters HingeJointParameters {
|
||||
axis 1 0 0
|
||||
anchor 0 0 0
|
||||
dampingConstant 0.1
|
||||
}
|
||||
endPoint Solid {
|
||||
translation 0 0 0
|
||||
rotation 1 0 0 0
|
||||
children [
|
||||
RFootSolid {
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
name "RLegUhz"
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
||||
]
|
||||
name IS name
|
||||
model "Boston Dynamics Atlas"
|
||||
controller IS controller
|
||||
controllerArgs IS controllerArgs
|
||||
customData IS customData
|
||||
supervisor IS supervisor
|
||||
synchronization IS synchronization
|
||||
physics USE DEFAULT_PHYSICS
|
||||
}
|
||||
}
|
18
simulation/atlas/protos/CarbonFiberAppearance.proto
Normal file
18
simulation/atlas/protos/CarbonFiberAppearance.proto
Normal file
|
@ -0,0 +1,18 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
|
||||
PROTO CarbonFiberAppearance [
|
||||
]
|
||||
{
|
||||
PBRAppearance {
|
||||
baseColorMap ImageTexture {
|
||||
url [
|
||||
"textures/atlas_carbon_fiber.jpg"
|
||||
]
|
||||
}
|
||||
metalness 0
|
||||
roughness 0.3
|
||||
}
|
||||
}
|
18
simulation/atlas/protos/DarkAppearance.proto
Normal file
18
simulation/atlas/protos/DarkAppearance.proto
Normal file
|
@ -0,0 +1,18 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
|
||||
PROTO DarkAppearance [
|
||||
]
|
||||
{
|
||||
PBRAppearance {
|
||||
baseColorMap ImageTexture {
|
||||
url [
|
||||
"textures/atlas_dark.jpg"
|
||||
]
|
||||
}
|
||||
metalness 0
|
||||
roughness 0.4
|
||||
}
|
||||
}
|
4493
simulation/atlas/protos/HeadMesh.proto
Normal file
4493
simulation/atlas/protos/HeadMesh.proto
Normal file
File diff suppressed because it is too large
Load Diff
1106
simulation/atlas/protos/LClavMesh.proto
Normal file
1106
simulation/atlas/protos/LClavMesh.proto
Normal file
File diff suppressed because it is too large
Load Diff
52
simulation/atlas/protos/LClavSolid.proto
Normal file
52
simulation/atlas/protos/LClavSolid.proto
Normal file
|
@ -0,0 +1,52 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LClavSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LClavMesh {
|
||||
}
|
||||
]
|
||||
name "LClav"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation 0 0.0744 0.03657
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.045
|
||||
height 0.1525
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation 0 0.012 0.012
|
||||
rotation 1.0 0.0 0.0 1.0464
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.04
|
||||
height 0.027
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 2.369
|
||||
centerOfMass 0.014 0.058 0.029
|
||||
inertiaMatrix [0.004 0.006 0.007, 0.001 0 0 ]
|
||||
}
|
||||
}
|
||||
}
|
649
simulation/atlas/protos/LFarmMesh.proto
Normal file
649
simulation/atlas/protos/LFarmMesh.proto
Normal file
|
@ -0,0 +1,649 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_farm.dae
|
||||
|
||||
PROTO LFarmMesh [
|
||||
]
|
||||
{
|
||||
Group {
|
||||
children [
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
-0.033047 0.058732 -0.0013
|
||||
-0.030457 0.017747 -0.014324
|
||||
-0.033047 0.017747 -0.0013
|
||||
-0.030457 0.058732 -0.014324
|
||||
-0.02308 0.017747 -0.025364
|
||||
-0.02308 0.058732 -0.025364
|
||||
-0.012041 0.017747 -0.032741
|
||||
-0.012041 0.058732 -0.032741
|
||||
0.000982 0.017747 -0.035331
|
||||
0.000982 0.058732 -0.035331
|
||||
0.000982 0.058732 -0.035331
|
||||
0.014005 0.017747 -0.032741
|
||||
0.000982 0.017747 -0.035331
|
||||
0.014005 0.058732 -0.032741
|
||||
0.025045 0.017747 -0.025364
|
||||
0.025045 0.058732 -0.025364
|
||||
0.032422 0.017747 -0.014324
|
||||
0.032422 0.058732 -0.014324
|
||||
0.035012 0.017747 -0.0013
|
||||
0.032422 0.058732 -0.014324
|
||||
0.035012 0.058732 -0.0013
|
||||
0.035012 0.017747 -0.0013
|
||||
0.032422 0.017747 0.011722
|
||||
0.032422 0.058732 0.011722
|
||||
0.025045 0.017747 0.022762
|
||||
0.025045 0.058732 0.022762
|
||||
0.014005 0.017747 0.030139
|
||||
0.014005 0.058732 0.030139
|
||||
0.000982 0.017747 0.032729
|
||||
0.000982 0.058732 0.032729
|
||||
-0.012041 0.017747 0.030139
|
||||
-0.012041 0.058732 0.030139
|
||||
-0.02308 0.017747 0.022762
|
||||
-0.02308 0.058732 0.022762
|
||||
-0.030457 0.017747 0.011722
|
||||
-0.030457 0.058732 0.011722
|
||||
-0.033047 0.017747 -0.0013
|
||||
-0.016577 -0.000169 0.04109
|
||||
0.018541 -0.000169 0.04109
|
||||
0.000982 -0.000169 0.044582
|
||||
0.033426 -0.000169 0.031143
|
||||
-0.031461 -0.000169 0.031143
|
||||
0.043373 -0.000169 0.016257
|
||||
-0.041408 -0.000169 0.016257
|
||||
0.046865 -0.000169 -0.001301
|
||||
-0.0449 -0.000169 -0.0013
|
||||
0.043373 -0.000169 -0.018859
|
||||
-0.041408 -0.000169 -0.018859
|
||||
0.033426 -0.000169 -0.033745
|
||||
-0.031461 -0.000169 -0.033745
|
||||
0.018541 -0.000169 -0.043691
|
||||
-0.016577 -0.000169 -0.043691
|
||||
0.000982 -0.000169 -0.047183
|
||||
-0.02308 0.058732 -0.025364
|
||||
0.000982 0.058732 -0.035331
|
||||
-0.012041 0.058732 -0.032741
|
||||
0.014005 0.058732 -0.032741
|
||||
-0.030457 0.058732 -0.014324
|
||||
0.025045 0.058732 -0.025364
|
||||
-0.033047 0.058732 -0.0013
|
||||
0.032422 0.058732 -0.014324
|
||||
-0.030457 0.058732 0.011722
|
||||
0.035012 0.058732 -0.0013
|
||||
-0.02308 0.058732 0.022762
|
||||
0.032422 0.058732 0.011722
|
||||
-0.012041 0.058732 0.030139
|
||||
0.025045 0.058732 0.022762
|
||||
0.000982 0.058732 0.032729
|
||||
0.014005 0.058732 0.030139
|
||||
-0.041408 -0.000169 -0.018859
|
||||
-0.0449 -0.000169 -0.0013
|
||||
-0.041408 -0.000169 0.016257
|
||||
-0.031461 -0.000169 0.031143
|
||||
-0.016577 -0.000169 0.04109
|
||||
0.000982 -0.000169 0.044582
|
||||
0.018541 -0.000169 0.04109
|
||||
0.033426 -0.000169 0.031143
|
||||
0.043373 -0.000169 0.016257
|
||||
0.046865 -0.000169 -0.001301
|
||||
0.043373 -0.000169 -0.018859
|
||||
0.018541 -0.000169 -0.043691
|
||||
0.000982 0.017747 -0.035331
|
||||
0.000982 -0.000169 -0.047183
|
||||
-0.016577 -0.000169 -0.043691
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
10 11 12 -1
|
||||
10 13 11 -1
|
||||
13 14 11 -1
|
||||
13 15 14 -1
|
||||
15 16 14 -1
|
||||
15 17 16 -1
|
||||
17 18 16 -1
|
||||
19 20 21 -1
|
||||
20 22 21 -1
|
||||
20 23 22 -1
|
||||
23 24 22 -1
|
||||
23 25 24 -1
|
||||
25 26 24 -1
|
||||
25 27 26 -1
|
||||
27 28 26 -1
|
||||
27 29 28 -1
|
||||
29 30 28 -1
|
||||
29 31 30 -1
|
||||
31 32 30 -1
|
||||
31 33 32 -1
|
||||
33 34 32 -1
|
||||
33 35 34 -1
|
||||
35 36 34 -1
|
||||
35 0 36 -1
|
||||
37 38 39 -1
|
||||
37 40 38 -1
|
||||
41 40 37 -1
|
||||
41 42 40 -1
|
||||
43 42 41 -1
|
||||
43 44 42 -1
|
||||
45 44 43 -1
|
||||
45 46 44 -1
|
||||
47 46 45 -1
|
||||
47 48 46 -1
|
||||
49 48 47 -1
|
||||
49 50 48 -1
|
||||
51 50 49 -1
|
||||
51 52 50 -1
|
||||
53 54 55 -1
|
||||
53 56 54 -1
|
||||
57 56 53 -1
|
||||
57 58 56 -1
|
||||
59 58 57 -1
|
||||
59 60 58 -1
|
||||
61 60 59 -1
|
||||
61 62 60 -1
|
||||
63 62 61 -1
|
||||
63 64 62 -1
|
||||
65 64 63 -1
|
||||
65 66 64 -1
|
||||
67 66 65 -1
|
||||
67 68 66 -1
|
||||
69 2 1 -1
|
||||
69 70 2 -1
|
||||
70 34 2 -1
|
||||
70 71 34 -1
|
||||
71 32 34 -1
|
||||
71 72 32 -1
|
||||
72 30 32 -1
|
||||
72 73 30 -1
|
||||
73 28 30 -1
|
||||
73 74 28 -1
|
||||
74 26 28 -1
|
||||
74 75 26 -1
|
||||
75 24 26 -1
|
||||
75 76 24 -1
|
||||
76 22 24 -1
|
||||
76 77 22 -1
|
||||
77 21 22 -1
|
||||
77 78 18 -1
|
||||
78 16 18 -1
|
||||
78 79 16 -1
|
||||
79 14 16 -1
|
||||
79 48 14 -1
|
||||
48 11 14 -1
|
||||
48 80 11 -1
|
||||
80 81 11 -1
|
||||
80 82 81 -1
|
||||
82 6 8 -1
|
||||
82 83 6 -1
|
||||
83 4 6 -1
|
||||
83 49 4 -1
|
||||
49 1 4 -1
|
||||
49 69 1 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.93112 0.88277
|
||||
0.94087 0.89084
|
||||
0.9417 0.88685
|
||||
0.92919 0.8849
|
||||
0.94041 0.89472
|
||||
0.92706 0.88598
|
||||
0.94014 0.89832
|
||||
0.92462 0.88564
|
||||
0.93926 0.90172
|
||||
0.92148 0.88356
|
||||
0.97955 0.9051
|
||||
0.96816 0.89507
|
||||
0.96582 0.89966
|
||||
0.9815 0.90069
|
||||
0.97069 0.89006
|
||||
0.98365 0.89625
|
||||
0.97278 0.8847
|
||||
0.98593 0.89192
|
||||
0.97439 0.87939
|
||||
0.92271 0.86392
|
||||
0.92759 0.86305
|
||||
0.9473 0.85432
|
||||
0.94976 0.85894
|
||||
0.93164 0.86357
|
||||
0.94953 0.86244
|
||||
0.93462 0.86517
|
||||
0.948 0.86588
|
||||
0.93643 0.86767
|
||||
0.9462 0.86976
|
||||
0.93702 0.87078
|
||||
0.94472 0.87408
|
||||
0.93646 0.87408
|
||||
0.94362 0.87849
|
||||
0.93502 0.87726
|
||||
0.94269 0.88275
|
||||
0.93309 0.88018
|
||||
0.9417 0.88685
|
||||
0.94861 0.8741
|
||||
0.95397 0.86796
|
||||
0.95067 0.87055
|
||||
0.95832 0.86689
|
||||
0.94774 0.87825
|
||||
0.96354 0.8681
|
||||
0.94756 0.88274
|
||||
0.96678 0.87489
|
||||
0.94698 0.88755
|
||||
0.96706 0.88193
|
||||
0.94684 0.89185
|
||||
0.96494 0.88845
|
||||
0.94775 0.89517
|
||||
0.9609 0.89384
|
||||
0.95037 0.89722
|
||||
0.95532 0.89764
|
||||
0.92706 0.88598
|
||||
0.92148 0.88356
|
||||
0.92462 0.88564
|
||||
0.91946 0.87717
|
||||
0.92919 0.8849
|
||||
0.91979 0.8702
|
||||
0.93112 0.88277
|
||||
0.92271 0.86392
|
||||
0.93309 0.88018
|
||||
0.92759 0.86305
|
||||
0.93502 0.87726
|
||||
0.93164 0.86357
|
||||
0.93646 0.87408
|
||||
0.93462 0.86517
|
||||
0.93702 0.87078
|
||||
0.93643 0.86767
|
||||
0.94684 0.89185
|
||||
0.94698 0.88755
|
||||
0.94756 0.88274
|
||||
0.94774 0.87825
|
||||
0.94861 0.8741
|
||||
0.95067 0.87055
|
||||
0.95397 0.86796
|
||||
0.95832 0.86689
|
||||
0.96354 0.8681
|
||||
0.96678 0.87489
|
||||
0.96706 0.88193
|
||||
0.9609 0.89384
|
||||
0.96582 0.89966
|
||||
0.95532 0.89764
|
||||
0.95037 0.89722
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
10 11 12 -1
|
||||
10 13 11 -1
|
||||
13 14 11 -1
|
||||
13 15 14 -1
|
||||
15 16 14 -1
|
||||
15 17 16 -1
|
||||
17 18 16 -1
|
||||
19 20 21 -1
|
||||
20 22 21 -1
|
||||
20 23 22 -1
|
||||
23 24 22 -1
|
||||
23 25 24 -1
|
||||
25 26 24 -1
|
||||
25 27 26 -1
|
||||
27 28 26 -1
|
||||
27 29 28 -1
|
||||
29 30 28 -1
|
||||
29 31 30 -1
|
||||
31 32 30 -1
|
||||
31 33 32 -1
|
||||
33 34 32 -1
|
||||
33 35 34 -1
|
||||
35 36 34 -1
|
||||
35 0 36 -1
|
||||
37 38 39 -1
|
||||
37 40 38 -1
|
||||
41 40 37 -1
|
||||
41 42 40 -1
|
||||
43 42 41 -1
|
||||
43 44 42 -1
|
||||
45 44 43 -1
|
||||
45 46 44 -1
|
||||
47 46 45 -1
|
||||
47 48 46 -1
|
||||
49 48 47 -1
|
||||
49 50 48 -1
|
||||
51 50 49 -1
|
||||
51 52 50 -1
|
||||
53 54 55 -1
|
||||
53 56 54 -1
|
||||
57 56 53 -1
|
||||
57 58 56 -1
|
||||
59 58 57 -1
|
||||
59 60 58 -1
|
||||
61 60 59 -1
|
||||
61 62 60 -1
|
||||
63 62 61 -1
|
||||
63 64 62 -1
|
||||
65 64 63 -1
|
||||
65 66 64 -1
|
||||
67 66 65 -1
|
||||
67 68 66 -1
|
||||
69 2 1 -1
|
||||
69 70 2 -1
|
||||
70 34 2 -1
|
||||
70 71 34 -1
|
||||
71 32 34 -1
|
||||
71 72 32 -1
|
||||
72 30 32 -1
|
||||
72 73 30 -1
|
||||
73 28 30 -1
|
||||
73 74 28 -1
|
||||
74 26 28 -1
|
||||
74 75 26 -1
|
||||
75 24 26 -1
|
||||
75 76 24 -1
|
||||
76 22 24 -1
|
||||
76 77 22 -1
|
||||
77 21 22 -1
|
||||
77 78 18 -1
|
||||
78 16 18 -1
|
||||
78 79 16 -1
|
||||
79 14 16 -1
|
||||
79 48 14 -1
|
||||
48 11 14 -1
|
||||
48 80 11 -1
|
||||
80 81 11 -1
|
||||
80 82 81 -1
|
||||
82 6 8 -1
|
||||
82 83 6 -1
|
||||
83 4 6 -1
|
||||
83 49 4 -1
|
||||
49 1 4 -1
|
||||
49 69 1 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
-0.02501 0.032404 0.018218
|
||||
0.025462 0.027057 0.006064
|
||||
0.025462 0.032404 0.018218
|
||||
-0.02501 0.027057 0.006064
|
||||
0.025462 0.026766 -0.00721
|
||||
-0.02501 0.026766 -0.00721
|
||||
0.025462 0.031579 -0.019585
|
||||
-0.02501 0.031579 -0.019585
|
||||
0.025462 0.040761 -0.029177
|
||||
0.025462 0.031579 -0.019585
|
||||
-0.02501 0.040761 -0.029177
|
||||
0.025462 0.052915 -0.034525
|
||||
-0.02501 0.052915 -0.034525
|
||||
0.025462 0.06619 -0.034814
|
||||
-0.02501 0.06619 -0.034814
|
||||
0.025462 0.078564 -0.030002
|
||||
-0.02501 0.078564 -0.030002
|
||||
0.025462 0.088156 -0.02082
|
||||
-0.02501 0.088156 -0.02082
|
||||
0.025462 0.093503 -0.008666
|
||||
-0.02501 0.093503 -0.008666
|
||||
0.025462 0.093793 0.004608
|
||||
-0.02501 0.093793 0.004608
|
||||
0.025462 0.088981 0.016983
|
||||
-0.02501 0.088981 0.016983
|
||||
0.025462 0.079799 0.026575
|
||||
-0.02501 0.079799 0.026575
|
||||
0.025462 0.067646 0.031923
|
||||
-0.02501 0.067646 0.031923
|
||||
0.025462 0.054371 0.032212
|
||||
-0.02501 0.054371 0.032212
|
||||
0.025462 0.041995 0.0274
|
||||
-0.02501 0.041995 0.0274
|
||||
0.025462 0.088981 0.016983
|
||||
0.025462 0.093793 0.004608
|
||||
0.025462 0.093503 -0.008666
|
||||
0.025462 0.041995 0.0274
|
||||
0.025462 0.088156 -0.02082
|
||||
0.025462 0.032404 0.018218
|
||||
0.025462 0.078564 -0.030002
|
||||
0.025462 0.027057 0.006064
|
||||
0.025462 0.06619 -0.034814
|
||||
0.025462 0.026766 -0.00721
|
||||
0.025462 0.052915 -0.034525
|
||||
0.025462 0.031579 -0.019585
|
||||
0.025462 0.040761 -0.029177
|
||||
-0.02501 0.026766 -0.00721
|
||||
-0.02501 0.040761 -0.029177
|
||||
-0.02501 0.031579 -0.019585
|
||||
-0.02501 0.052915 -0.034525
|
||||
-0.02501 0.027057 0.006064
|
||||
-0.02501 0.06619 -0.034814
|
||||
-0.02501 0.032404 0.018218
|
||||
-0.02501 0.078564 -0.030002
|
||||
-0.02501 0.041995 0.0274
|
||||
-0.02501 0.088156 -0.02082
|
||||
-0.02501 0.054371 0.032212
|
||||
-0.02501 0.093503 -0.008666
|
||||
-0.02501 0.093793 0.004608
|
||||
-0.02501 0.088981 0.016983
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 9 -1
|
||||
7 10 8 -1
|
||||
10 11 8 -1
|
||||
10 12 11 -1
|
||||
12 13 11 -1
|
||||
12 14 13 -1
|
||||
14 15 13 -1
|
||||
14 16 15 -1
|
||||
16 17 15 -1
|
||||
16 18 17 -1
|
||||
18 19 17 -1
|
||||
18 20 19 -1
|
||||
20 21 19 -1
|
||||
20 22 21 -1
|
||||
22 23 21 -1
|
||||
22 24 23 -1
|
||||
24 25 23 -1
|
||||
24 26 25 -1
|
||||
26 27 25 -1
|
||||
26 28 27 -1
|
||||
28 29 27 -1
|
||||
28 30 29 -1
|
||||
30 31 29 -1
|
||||
30 32 31 -1
|
||||
32 2 31 -1
|
||||
32 0 2 -1
|
||||
27 33 25 -1
|
||||
27 34 33 -1
|
||||
29 34 27 -1
|
||||
29 35 34 -1
|
||||
36 35 29 -1
|
||||
36 37 35 -1
|
||||
38 37 36 -1
|
||||
38 39 37 -1
|
||||
40 39 38 -1
|
||||
40 41 39 -1
|
||||
42 41 40 -1
|
||||
42 43 41 -1
|
||||
44 43 42 -1
|
||||
44 45 43 -1
|
||||
46 47 48 -1
|
||||
46 49 47 -1
|
||||
50 49 46 -1
|
||||
50 51 49 -1
|
||||
52 51 50 -1
|
||||
52 53 51 -1
|
||||
54 53 52 -1
|
||||
54 55 53 -1
|
||||
56 55 54 -1
|
||||
56 57 55 -1
|
||||
28 57 56 -1
|
||||
28 58 57 -1
|
||||
26 58 28 -1
|
||||
26 59 58 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.02877 0.87784
|
||||
0.02843 0.88675
|
||||
0.03117 0.88634
|
||||
0.02466 0.87871
|
||||
0.02607 0.8877
|
||||
0.02121 0.87989
|
||||
0.02432 0.88936
|
||||
0.01883 0.88099
|
||||
0.02338 0.89167
|
||||
0.02432 0.88936
|
||||
0.01658 0.88108
|
||||
0.02345 0.89425
|
||||
0.01645 0.89
|
||||
0.02532 0.89722
|
||||
0.02022 0.89784
|
||||
0.02872 0.89919
|
||||
0.02737 0.90249
|
||||
0.0328 0.89949
|
||||
0.03582 0.90236
|
||||
0.03662 0.8981
|
||||
0.0428 0.89749
|
||||
0.03943 0.89544
|
||||
0.04623 0.88954
|
||||
0.04066 0.89231
|
||||
0.04562 0.88073
|
||||
0.04017 0.89006
|
||||
0.04381 0.87999
|
||||
0.03876 0.88819
|
||||
0.04106 0.8789
|
||||
0.03662 0.88695
|
||||
0.03742 0.87797
|
||||
0.03399 0.88637
|
||||
0.03317 0.87757
|
||||
0.04066 0.89231
|
||||
0.03943 0.89544
|
||||
0.03662 0.8981
|
||||
0.03399 0.88637
|
||||
0.0328 0.89949
|
||||
0.03117 0.88634
|
||||
0.02872 0.89919
|
||||
0.02843 0.88675
|
||||
0.02532 0.89722
|
||||
0.02607 0.8877
|
||||
0.02345 0.89425
|
||||
0.02432 0.88936
|
||||
0.02338 0.89167
|
||||
0.02121 0.87989
|
||||
0.01658 0.88108
|
||||
0.01883 0.88099
|
||||
0.01786 0.87562
|
||||
0.02466 0.87871
|
||||
0.02151 0.87028
|
||||
0.02877 0.87784
|
||||
0.02747 0.86701
|
||||
0.03317 0.87757
|
||||
0.03437 0.86706
|
||||
0.03742 0.87797
|
||||
0.04035 0.8704
|
||||
0.04407 0.87564
|
||||
0.04562 0.88073
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 9 -1
|
||||
7 10 8 -1
|
||||
10 11 8 -1
|
||||
10 12 11 -1
|
||||
12 13 11 -1
|
||||
12 14 13 -1
|
||||
14 15 13 -1
|
||||
14 16 15 -1
|
||||
16 17 15 -1
|
||||
16 18 17 -1
|
||||
18 19 17 -1
|
||||
18 20 19 -1
|
||||
20 21 19 -1
|
||||
20 22 21 -1
|
||||
22 23 21 -1
|
||||
22 24 23 -1
|
||||
24 25 23 -1
|
||||
24 26 25 -1
|
||||
26 27 25 -1
|
||||
26 28 27 -1
|
||||
28 29 27 -1
|
||||
28 30 29 -1
|
||||
30 31 29 -1
|
||||
30 32 31 -1
|
||||
32 2 31 -1
|
||||
32 0 2 -1
|
||||
27 33 25 -1
|
||||
27 34 33 -1
|
||||
29 34 27 -1
|
||||
29 35 34 -1
|
||||
36 35 29 -1
|
||||
36 37 35 -1
|
||||
38 37 36 -1
|
||||
38 39 37 -1
|
||||
40 39 38 -1
|
||||
40 41 39 -1
|
||||
42 41 40 -1
|
||||
42 43 41 -1
|
||||
44 43 42 -1
|
||||
44 45 43 -1
|
||||
46 47 48 -1
|
||||
46 49 47 -1
|
||||
50 49 46 -1
|
||||
50 51 49 -1
|
||||
52 51 50 -1
|
||||
52 53 51 -1
|
||||
54 53 52 -1
|
||||
54 55 53 -1
|
||||
56 55 54 -1
|
||||
56 57 55 -1
|
||||
28 57 56 -1
|
||||
28 58 57 -1
|
||||
26 58 28 -1
|
||||
26 59 58 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
52
simulation/atlas/protos/LFarmSolid.proto
Normal file
52
simulation/atlas/protos/LFarmSolid.proto
Normal file
|
@ -0,0 +1,52 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LFarmSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LFarmMesh {
|
||||
}
|
||||
]
|
||||
name "LFarm"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation 0 0.0174215 0
|
||||
rotation 1.0 0.0 0.0 3.14079632679
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.0458825
|
||||
height 0.035181
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation 0.000226 0.06028 0.0
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.0279
|
||||
height 0.050472
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 0.981
|
||||
centerOfMass 0 0.041 0
|
||||
inertiaMatrix [0.003 0.001 0.003, 0 0 0 ]
|
||||
}
|
||||
}
|
||||
}
|
1294
simulation/atlas/protos/LFootMesh.proto
Normal file
1294
simulation/atlas/protos/LFootMesh.proto
Normal file
File diff suppressed because it is too large
Load Diff
41
simulation/atlas/protos/LFootSolid.proto
Normal file
41
simulation/atlas/protos/LFootSolid.proto
Normal file
|
@ -0,0 +1,41 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LFootSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LFootMesh {
|
||||
}
|
||||
]
|
||||
name "LFoot"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation 0.048 0 -0.076119
|
||||
rotation 0.0 1.0 0.0 0.0
|
||||
children [
|
||||
Box {
|
||||
size 0.26 0.124887 0.01
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 0.817
|
||||
centerOfMass 0.027 0 -0.067
|
||||
inertiaMatrix [0.001 0.0035 0.004, 0 0 0 ]
|
||||
}
|
||||
}
|
||||
}
|
828
simulation/atlas/protos/LHandMesh.proto
Normal file
828
simulation/atlas/protos/LHandMesh.proto
Normal file
|
@ -0,0 +1,828 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_hand.dae
|
||||
|
||||
PROTO LHandMesh [
|
||||
]
|
||||
{
|
||||
Group {
|
||||
children [
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
0.044433 -0.033296 5.8e-05
|
||||
0.024317 -0.03056 0.013811
|
||||
0.024317 -0.033296 5.8e-05
|
||||
0.044433 -0.03056 0.013811
|
||||
0.024317 -0.022769 0.025471
|
||||
0.044433 -0.022769 0.02547
|
||||
0.024317 -0.011111 0.033261
|
||||
0.044433 -0.011111 0.033261
|
||||
0.024317 0.002643 0.035997
|
||||
0.044433 0.002643 0.035997
|
||||
0.024317 0.016396 0.033261
|
||||
0.044433 0.016396 0.033261
|
||||
0.024317 0.028056 0.025471
|
||||
0.044433 0.028056 0.02547
|
||||
0.024317 0.035845 0.013811
|
||||
0.044433 0.035845 0.013811
|
||||
0.024317 0.038581 5.8e-05
|
||||
0.044433 0.038581 5.8e-05
|
||||
0.024317 0.035845 -0.013695
|
||||
0.044433 0.035845 -0.013695
|
||||
0.024317 0.028056 -0.025355
|
||||
0.044433 0.028056 -0.025355
|
||||
0.024317 0.016396 -0.033145
|
||||
0.044433 0.016396 -0.033145
|
||||
0.024317 0.002643 -0.035881
|
||||
0.044433 0.002643 -0.035881
|
||||
0.024317 -0.011111 -0.033145
|
||||
0.044433 -0.011111 -0.033145
|
||||
0.024317 -0.022769 -0.025355
|
||||
0.044433 -0.022769 -0.025355
|
||||
0.024317 -0.03056 -0.013695
|
||||
0.044433 -0.03056 -0.013695
|
||||
0.024317 -0.011111 -0.033145
|
||||
0.024317 0.016396 -0.033145
|
||||
0.024317 0.002643 -0.035881
|
||||
0.024317 0.028056 -0.025355
|
||||
0.024317 -0.022769 -0.025355
|
||||
0.024317 0.035845 -0.013695
|
||||
0.024317 -0.03056 -0.013695
|
||||
0.024317 0.038581 5.8e-05
|
||||
0.024317 -0.033296 5.8e-05
|
||||
0.024317 0.035845 0.013811
|
||||
0.024317 -0.03056 0.013811
|
||||
0.024317 0.028056 0.025471
|
||||
0.024317 -0.022769 0.025471
|
||||
0.024317 0.016396 0.033261
|
||||
0.024317 -0.011111 0.033261
|
||||
0.024317 0.002643 0.035997
|
||||
0.044433 -0.022769 0.02547
|
||||
0.044433 0.002643 0.035997
|
||||
0.044433 -0.011111 0.033261
|
||||
0.044433 0.016396 0.033261
|
||||
0.044433 0.028056 0.02547
|
||||
0.044433 -0.033296 5.8e-05
|
||||
0.044433 0.035845 0.013811
|
||||
0.044433 -0.03056 -0.013695
|
||||
0.044433 0.038581 5.8e-05
|
||||
0.044433 0.035845 -0.013695
|
||||
0.044433 -0.011111 -0.033145
|
||||
0.044433 0.028056 -0.025355
|
||||
0.044433 0.002643 -0.035881
|
||||
0.044433 0.016396 -0.033145
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
9 10 8 -1
|
||||
9 11 10 -1
|
||||
11 12 10 -1
|
||||
11 13 12 -1
|
||||
13 14 12 -1
|
||||
13 15 14 -1
|
||||
15 16 14 -1
|
||||
15 17 16 -1
|
||||
17 18 16 -1
|
||||
17 19 18 -1
|
||||
19 20 18 -1
|
||||
19 21 20 -1
|
||||
21 22 20 -1
|
||||
21 23 22 -1
|
||||
23 24 22 -1
|
||||
23 25 24 -1
|
||||
25 26 24 -1
|
||||
25 27 26 -1
|
||||
27 28 26 -1
|
||||
27 29 28 -1
|
||||
29 30 28 -1
|
||||
29 31 30 -1
|
||||
31 2 30 -1
|
||||
31 0 2 -1
|
||||
32 33 34 -1
|
||||
32 35 33 -1
|
||||
36 35 32 -1
|
||||
36 37 35 -1
|
||||
38 37 36 -1
|
||||
38 39 37 -1
|
||||
40 39 38 -1
|
||||
40 41 39 -1
|
||||
42 41 40 -1
|
||||
42 43 41 -1
|
||||
44 43 42 -1
|
||||
44 45 43 -1
|
||||
46 45 44 -1
|
||||
46 47 45 -1
|
||||
48 49 50 -1
|
||||
48 51 49 -1
|
||||
3 51 48 -1
|
||||
3 52 51 -1
|
||||
53 52 3 -1
|
||||
53 54 52 -1
|
||||
55 54 53 -1
|
||||
55 56 54 -1
|
||||
29 56 55 -1
|
||||
29 57 56 -1
|
||||
58 57 29 -1
|
||||
58 59 57 -1
|
||||
60 59 58 -1
|
||||
60 61 59 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.05801 0.53344
|
||||
0.06242 0.53565
|
||||
0.06194 0.53228
|
||||
0.05856 0.53744
|
||||
0.06314 0.53846
|
||||
0.05907 0.54073
|
||||
0.06435 0.54042
|
||||
0.05905 0.54301
|
||||
0.06647 0.54133
|
||||
0.05757 0.54462
|
||||
0.07009 0.54081
|
||||
0.06833 0.5459
|
||||
0.0741 0.53808
|
||||
0.07678 0.5422
|
||||
0.07654 0.5336
|
||||
0.08143 0.53496
|
||||
0.07659 0.52847
|
||||
0.08135 0.5265
|
||||
0.07423 0.52394
|
||||
0.07653 0.51931
|
||||
0.07024 0.52101
|
||||
0.0679 0.5158
|
||||
0.06607 0.52006
|
||||
0.05742 0.51761
|
||||
0.06407 0.52064
|
||||
0.05831 0.51915
|
||||
0.06271 0.52257
|
||||
0.05815 0.52157
|
||||
0.06197 0.52537
|
||||
0.05779 0.525
|
||||
0.06175 0.52872
|
||||
0.05771 0.52913
|
||||
0.06271 0.52257
|
||||
0.06607 0.52006
|
||||
0.06407 0.52064
|
||||
0.07024 0.52101
|
||||
0.06197 0.52537
|
||||
0.07423 0.52394
|
||||
0.06175 0.52872
|
||||
0.07659 0.52847
|
||||
0.06194 0.53228
|
||||
0.07654 0.5336
|
||||
0.06242 0.53565
|
||||
0.0741 0.53808
|
||||
0.06314 0.53846
|
||||
0.07009 0.54081
|
||||
0.06435 0.54042
|
||||
0.06647 0.54133
|
||||
0.05907 0.54073
|
||||
0.05757 0.54462
|
||||
0.05905 0.54301
|
||||
0.05174 0.54369
|
||||
0.04635 0.54018
|
||||
0.05801 0.53344
|
||||
0.04319 0.53448
|
||||
0.05771 0.52913
|
||||
0.04327 0.52793
|
||||
0.04656 0.52223
|
||||
0.05815 0.52157
|
||||
0.05191 0.51872
|
||||
0.05831 0.51915
|
||||
0.05742 0.51761
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
9 10 8 -1
|
||||
9 11 10 -1
|
||||
11 12 10 -1
|
||||
11 13 12 -1
|
||||
13 14 12 -1
|
||||
13 15 14 -1
|
||||
15 16 14 -1
|
||||
15 17 16 -1
|
||||
17 18 16 -1
|
||||
17 19 18 -1
|
||||
19 20 18 -1
|
||||
19 21 20 -1
|
||||
21 22 20 -1
|
||||
21 23 22 -1
|
||||
23 24 22 -1
|
||||
23 25 24 -1
|
||||
25 26 24 -1
|
||||
25 27 26 -1
|
||||
27 28 26 -1
|
||||
27 29 28 -1
|
||||
29 30 28 -1
|
||||
29 31 30 -1
|
||||
31 2 30 -1
|
||||
31 0 2 -1
|
||||
32 33 34 -1
|
||||
32 35 33 -1
|
||||
36 35 32 -1
|
||||
36 37 35 -1
|
||||
38 37 36 -1
|
||||
38 39 37 -1
|
||||
40 39 38 -1
|
||||
40 41 39 -1
|
||||
42 41 40 -1
|
||||
42 43 41 -1
|
||||
44 43 42 -1
|
||||
44 45 43 -1
|
||||
46 45 44 -1
|
||||
46 47 45 -1
|
||||
48 49 50 -1
|
||||
48 51 49 -1
|
||||
3 51 48 -1
|
||||
3 52 51 -1
|
||||
53 52 3 -1
|
||||
53 54 52 -1
|
||||
55 54 53 -1
|
||||
55 56 54 -1
|
||||
29 56 55 -1
|
||||
29 57 56 -1
|
||||
58 57 29 -1
|
||||
58 59 57 -1
|
||||
60 59 58 -1
|
||||
60 61 59 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
-0.026537 -0.033296 5.8e-05
|
||||
-0.046652 -0.03056 0.013811
|
||||
-0.046652 -0.033296 5.8e-05
|
||||
-0.026537 -0.03056 0.013811
|
||||
-0.046652 -0.022769 0.025471
|
||||
-0.026537 -0.022769 0.02547
|
||||
-0.046652 -0.011111 0.033261
|
||||
-0.026537 -0.011111 0.033261
|
||||
-0.046652 0.002643 0.035997
|
||||
-0.026537 0.002643 0.035997
|
||||
-0.046652 0.016396 0.033261
|
||||
-0.026537 0.016396 0.033261
|
||||
-0.046652 0.028056 0.025471
|
||||
-0.026537 0.028056 0.02547
|
||||
-0.046652 0.035845 0.013811
|
||||
-0.026537 0.035845 0.013811
|
||||
-0.046652 0.038581 5.8e-05
|
||||
-0.026537 0.038581 5.8e-05
|
||||
-0.046652 0.035845 -0.013695
|
||||
-0.026537 0.035845 -0.013695
|
||||
-0.046652 0.028056 -0.025355
|
||||
-0.026537 0.028056 -0.025355
|
||||
-0.046652 0.016396 -0.033145
|
||||
-0.026537 0.016396 -0.033145
|
||||
-0.046652 0.002643 -0.035881
|
||||
-0.026537 0.002643 -0.035881
|
||||
-0.046652 -0.011111 -0.033145
|
||||
-0.026537 -0.011111 -0.033145
|
||||
-0.046652 -0.022769 -0.025355
|
||||
-0.026537 -0.022769 -0.025355
|
||||
-0.046652 -0.03056 -0.013695
|
||||
-0.026537 -0.03056 -0.013695
|
||||
-0.046652 -0.033296 5.8e-05
|
||||
-0.046652 -0.011111 -0.033145
|
||||
-0.046652 0.016396 -0.033145
|
||||
-0.046652 0.002643 -0.035881
|
||||
-0.046652 0.028056 -0.025355
|
||||
-0.046652 -0.022769 -0.025355
|
||||
-0.046652 0.035845 -0.013695
|
||||
-0.046652 -0.03056 -0.013695
|
||||
-0.046652 0.038581 5.8e-05
|
||||
-0.046652 -0.033296 5.8e-05
|
||||
-0.046652 0.035845 0.013811
|
||||
-0.046652 -0.03056 0.013811
|
||||
-0.046652 0.028056 0.025471
|
||||
-0.046652 -0.022769 0.025471
|
||||
-0.046652 0.016396 0.033261
|
||||
-0.046652 -0.011111 0.033261
|
||||
-0.046652 0.002643 0.035997
|
||||
-0.026537 -0.022769 0.02547
|
||||
-0.026537 0.002643 0.035997
|
||||
-0.026537 -0.011111 0.033261
|
||||
-0.026537 0.016396 0.033261
|
||||
-0.026537 -0.03056 0.013811
|
||||
-0.026537 0.028056 0.02547
|
||||
-0.026537 -0.033296 5.8e-05
|
||||
-0.026537 0.035845 0.013811
|
||||
-0.026537 -0.03056 -0.013695
|
||||
-0.026537 0.038581 5.8e-05
|
||||
-0.026537 -0.022769 -0.025355
|
||||
-0.026537 0.035845 -0.013695
|
||||
-0.026537 -0.011111 -0.033145
|
||||
-0.026537 0.028056 -0.025355
|
||||
-0.026537 0.002643 -0.035881
|
||||
-0.026537 0.016396 -0.033145
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
9 10 8 -1
|
||||
9 11 10 -1
|
||||
11 12 10 -1
|
||||
11 13 12 -1
|
||||
13 14 12 -1
|
||||
13 15 14 -1
|
||||
15 16 14 -1
|
||||
15 17 16 -1
|
||||
17 18 16 -1
|
||||
17 19 18 -1
|
||||
19 20 18 -1
|
||||
19 21 20 -1
|
||||
21 22 20 -1
|
||||
21 23 22 -1
|
||||
23 24 22 -1
|
||||
23 25 24 -1
|
||||
25 26 24 -1
|
||||
25 27 26 -1
|
||||
27 28 26 -1
|
||||
27 29 28 -1
|
||||
29 30 28 -1
|
||||
29 31 30 -1
|
||||
31 32 30 -1
|
||||
31 0 32 -1
|
||||
33 34 35 -1
|
||||
33 36 34 -1
|
||||
37 36 33 -1
|
||||
37 38 36 -1
|
||||
39 38 37 -1
|
||||
39 40 38 -1
|
||||
41 40 39 -1
|
||||
41 42 40 -1
|
||||
43 42 41 -1
|
||||
43 44 42 -1
|
||||
45 44 43 -1
|
||||
45 46 44 -1
|
||||
47 46 45 -1
|
||||
47 48 46 -1
|
||||
49 50 51 -1
|
||||
49 52 50 -1
|
||||
53 52 49 -1
|
||||
53 54 52 -1
|
||||
55 54 53 -1
|
||||
55 56 54 -1
|
||||
57 56 55 -1
|
||||
57 58 56 -1
|
||||
59 58 57 -1
|
||||
59 60 58 -1
|
||||
61 60 59 -1
|
||||
61 62 60 -1
|
||||
63 62 61 -1
|
||||
63 64 62 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.61431 0.94253
|
||||
0.61587 0.94721
|
||||
0.61792 0.94449
|
||||
0.61187 0.94575
|
||||
0.61439 0.9497
|
||||
0.60991 0.94843
|
||||
0.61386 0.95195
|
||||
0.60828 0.95003
|
||||
0.61472 0.95409
|
||||
0.6061 0.95012
|
||||
0.61764 0.95628
|
||||
0.6128 0.95863
|
||||
0.62241 0.95719
|
||||
0.6214 0.962
|
||||
0.62731 0.95575
|
||||
0.6298 0.96017
|
||||
0.63097 0.95216
|
||||
0.63573 0.95413
|
||||
0.6325 0.94728
|
||||
0.6374 0.94563
|
||||
0.63176 0.94239
|
||||
0.63378 0.93704
|
||||
0.62948 0.93877
|
||||
0.62509 0.93092
|
||||
0.62765 0.93776
|
||||
0.62463 0.93264
|
||||
0.62532 0.93817
|
||||
0.62281 0.93424
|
||||
0.62282 0.93963
|
||||
0.62013 0.9364
|
||||
0.6203 0.94184
|
||||
0.61715 0.93926
|
||||
0.61792 0.94449
|
||||
0.62532 0.93817
|
||||
0.62948 0.93877
|
||||
0.62765 0.93776
|
||||
0.63176 0.94239
|
||||
0.62282 0.93963
|
||||
0.6325 0.94728
|
||||
0.6203 0.94184
|
||||
0.63097 0.95216
|
||||
0.61792 0.94449
|
||||
0.62731 0.95575
|
||||
0.61587 0.94721
|
||||
0.62241 0.95719
|
||||
0.61439 0.9497
|
||||
0.61764 0.95628
|
||||
0.61386 0.95195
|
||||
0.61472 0.95409
|
||||
0.60991 0.94843
|
||||
0.6061 0.95012
|
||||
0.60828 0.95003
|
||||
0.60264 0.94534
|
||||
0.61187 0.94575
|
||||
0.60131 0.93905
|
||||
0.61431 0.94253
|
||||
0.6031 0.93278
|
||||
0.61715 0.93926
|
||||
0.60779 0.92821
|
||||
0.62013 0.9364
|
||||
0.61414 0.9265
|
||||
0.62281 0.93424
|
||||
0.62041 0.9278
|
||||
0.62463 0.93264
|
||||
0.62509 0.93092
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
9 10 8 -1
|
||||
9 11 10 -1
|
||||
11 12 10 -1
|
||||
11 13 12 -1
|
||||
13 14 12 -1
|
||||
13 15 14 -1
|
||||
15 16 14 -1
|
||||
15 17 16 -1
|
||||
17 18 16 -1
|
||||
17 19 18 -1
|
||||
19 20 18 -1
|
||||
19 21 20 -1
|
||||
21 22 20 -1
|
||||
21 23 22 -1
|
||||
23 24 22 -1
|
||||
23 25 24 -1
|
||||
25 26 24 -1
|
||||
25 27 26 -1
|
||||
27 28 26 -1
|
||||
27 29 28 -1
|
||||
29 30 28 -1
|
||||
29 31 30 -1
|
||||
31 32 30 -1
|
||||
31 0 32 -1
|
||||
33 34 35 -1
|
||||
33 36 34 -1
|
||||
37 36 33 -1
|
||||
37 38 36 -1
|
||||
39 38 37 -1
|
||||
39 40 38 -1
|
||||
41 40 39 -1
|
||||
41 42 40 -1
|
||||
43 42 41 -1
|
||||
43 44 42 -1
|
||||
45 44 43 -1
|
||||
45 46 44 -1
|
||||
47 46 45 -1
|
||||
47 48 46 -1
|
||||
49 50 51 -1
|
||||
49 52 50 -1
|
||||
53 52 49 -1
|
||||
53 54 52 -1
|
||||
55 54 53 -1
|
||||
55 56 54 -1
|
||||
57 56 55 -1
|
||||
57 58 56 -1
|
||||
59 58 57 -1
|
||||
59 60 58 -1
|
||||
61 60 59 -1
|
||||
61 62 60 -1
|
||||
63 62 61 -1
|
||||
63 64 62 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
0.035159 0.080254 5.8e-05
|
||||
0.032423 0.025137 0.013811
|
||||
0.035159 0.025137 5.8e-05
|
||||
0.032423 0.080254 0.013811
|
||||
0.024633 0.025137 0.025471
|
||||
0.024633 0.080254 0.02547
|
||||
0.012974 0.025137 0.033261
|
||||
0.012974 0.080254 0.033261
|
||||
-0.00078 0.025137 0.035997
|
||||
-0.00078 0.080254 0.035997
|
||||
-0.014533 0.025137 0.033261
|
||||
-0.014533 0.080254 0.033261
|
||||
-0.026192 0.025137 0.02547
|
||||
-0.026192 0.080254 0.02547
|
||||
-0.033982 0.025137 0.013811
|
||||
-0.033982 0.080254 0.013811
|
||||
-0.036718 0.025137 5.8e-05
|
||||
-0.036718 0.080254 5.8e-05
|
||||
-0.033982 0.025137 -0.013695
|
||||
-0.036718 0.025137 5.8e-05
|
||||
-0.033982 0.080254 -0.013695
|
||||
-0.026192 0.025137 -0.025355
|
||||
-0.026192 0.080254 -0.025355
|
||||
-0.014533 0.025137 -0.033145
|
||||
-0.014533 0.080254 -0.033145
|
||||
-0.00078 0.025137 -0.035881
|
||||
-0.00078 0.080254 -0.035881
|
||||
0.012974 0.025137 -0.033145
|
||||
-0.00078 0.025137 -0.035881
|
||||
0.012974 0.080254 -0.033145
|
||||
0.024633 0.025137 -0.025355
|
||||
0.024633 0.080254 -0.025355
|
||||
0.032423 0.025137 -0.013695
|
||||
0.032423 0.080254 -0.013695
|
||||
0.035159 0.025137 5.8e-05
|
||||
0.035159 0.080254 5.8e-05
|
||||
0.012974 0.025137 -0.033145
|
||||
-0.014533 0.025137 -0.033145
|
||||
-0.00078 0.025137 -0.035881
|
||||
-0.026192 0.025137 -0.025355
|
||||
0.024633 0.025137 -0.025355
|
||||
-0.033982 0.025137 -0.013695
|
||||
0.032423 0.025137 -0.013695
|
||||
-0.036718 0.025137 5.8e-05
|
||||
0.035159 0.025137 5.8e-05
|
||||
-0.033982 0.025137 0.013811
|
||||
0.032423 0.025137 0.013811
|
||||
-0.026192 0.025137 0.02547
|
||||
0.024633 0.025137 0.025471
|
||||
-0.014533 0.025137 0.033261
|
||||
0.012974 0.025137 0.033261
|
||||
-0.00078 0.025137 0.035997
|
||||
0.024633 0.080254 0.02547
|
||||
-0.00078 0.080254 0.035997
|
||||
0.012974 0.080254 0.033261
|
||||
-0.014533 0.080254 0.033261
|
||||
0.032423 0.080254 0.013811
|
||||
-0.026192 0.080254 0.02547
|
||||
0.035159 0.080254 5.8e-05
|
||||
-0.033982 0.080254 0.013811
|
||||
0.032423 0.080254 -0.013695
|
||||
-0.036718 0.080254 5.8e-05
|
||||
0.024633 0.080254 -0.025355
|
||||
-0.033982 0.080254 -0.013695
|
||||
0.012974 0.080254 -0.033145
|
||||
-0.026192 0.080254 -0.025355
|
||||
-0.00078 0.080254 -0.035881
|
||||
-0.014533 0.080254 -0.033145
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
9 10 8 -1
|
||||
9 11 10 -1
|
||||
11 12 10 -1
|
||||
11 13 12 -1
|
||||
13 14 12 -1
|
||||
13 15 14 -1
|
||||
15 16 14 -1
|
||||
15 17 16 -1
|
||||
17 18 19 -1
|
||||
17 20 18 -1
|
||||
20 21 18 -1
|
||||
20 22 21 -1
|
||||
22 23 21 -1
|
||||
22 24 23 -1
|
||||
24 25 23 -1
|
||||
24 26 25 -1
|
||||
26 27 28 -1
|
||||
26 29 27 -1
|
||||
29 30 27 -1
|
||||
29 31 30 -1
|
||||
31 32 30 -1
|
||||
31 33 32 -1
|
||||
33 34 32 -1
|
||||
33 35 34 -1
|
||||
36 37 38 -1
|
||||
36 39 37 -1
|
||||
40 39 36 -1
|
||||
40 41 39 -1
|
||||
42 41 40 -1
|
||||
42 43 41 -1
|
||||
44 43 42 -1
|
||||
44 45 43 -1
|
||||
46 45 44 -1
|
||||
46 47 45 -1
|
||||
48 47 46 -1
|
||||
48 49 47 -1
|
||||
50 49 48 -1
|
||||
50 51 49 -1
|
||||
52 53 54 -1
|
||||
52 55 53 -1
|
||||
56 55 52 -1
|
||||
56 57 55 -1
|
||||
58 57 56 -1
|
||||
58 59 57 -1
|
||||
60 59 58 -1
|
||||
60 61 59 -1
|
||||
62 61 60 -1
|
||||
62 63 61 -1
|
||||
64 63 62 -1
|
||||
64 65 63 -1
|
||||
66 65 64 -1
|
||||
66 67 65 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.62579 0.8409
|
||||
0.62425 0.82075
|
||||
0.61954 0.82265
|
||||
0.63048 0.83939
|
||||
0.62905 0.81909
|
||||
0.63517 0.83784
|
||||
0.63388 0.81754
|
||||
0.63986 0.83632
|
||||
0.63872 0.81604
|
||||
0.64458 0.83485
|
||||
0.64356 0.81458
|
||||
0.64931 0.83341
|
||||
0.6484 0.81314
|
||||
0.65407 0.83199
|
||||
0.65323 0.81172
|
||||
0.65884 0.83059
|
||||
0.65806 0.81032
|
||||
0.66362 0.8292
|
||||
0.66287 0.80891
|
||||
0.65806 0.81032
|
||||
0.66842 0.82782
|
||||
0.66768 0.8075
|
||||
0.67324 0.82646
|
||||
0.67246 0.80606
|
||||
0.67806 0.82512
|
||||
0.67723 0.80454
|
||||
0.68291 0.82386
|
||||
0.68207 0.80379
|
||||
0.67723 0.80454
|
||||
0.68773 0.82223
|
||||
0.68674 0.8022
|
||||
0.6926 0.82083
|
||||
0.69143 0.80065
|
||||
0.69743 0.81926
|
||||
0.69613 0.79917
|
||||
0.70216 0.81741
|
||||
0.68207 0.80379
|
||||
0.67236 0.80305
|
||||
0.67723 0.80454
|
||||
0.66845 0.7998
|
||||
0.68649 0.80149
|
||||
0.66613 0.79534
|
||||
0.68968 0.79768
|
||||
0.66571 0.79033
|
||||
0.69116 0.79292
|
||||
0.66723 0.78553
|
||||
0.69072 0.78796
|
||||
0.67044 0.78168
|
||||
0.68842 0.78355
|
||||
0.67487 0.77934
|
||||
0.6846 0.78036
|
||||
0.67985 0.77888
|
||||
0.70186 0.83815
|
||||
0.69595 0.84595
|
||||
0.69968 0.84264
|
||||
0.69122 0.84758
|
||||
0.70215 0.83317
|
||||
0.68623 0.84728
|
||||
0.70052 0.82844
|
||||
0.68171 0.8451
|
||||
0.6972 0.8247
|
||||
0.67836 0.84138
|
||||
0.69271 0.82252
|
||||
0.67669 0.83667
|
||||
0.68773 0.82223
|
||||
0.67696 0.83167
|
||||
0.68291 0.82386
|
||||
0.67933 0.827
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
9 10 8 -1
|
||||
9 11 10 -1
|
||||
11 12 10 -1
|
||||
11 13 12 -1
|
||||
13 14 12 -1
|
||||
13 15 14 -1
|
||||
15 16 14 -1
|
||||
15 17 16 -1
|
||||
17 18 19 -1
|
||||
17 20 18 -1
|
||||
20 21 18 -1
|
||||
20 22 21 -1
|
||||
22 23 21 -1
|
||||
22 24 23 -1
|
||||
24 25 23 -1
|
||||
24 26 25 -1
|
||||
26 27 28 -1
|
||||
26 29 27 -1
|
||||
29 30 27 -1
|
||||
29 31 30 -1
|
||||
31 32 30 -1
|
||||
31 33 32 -1
|
||||
33 34 32 -1
|
||||
33 35 34 -1
|
||||
36 37 38 -1
|
||||
36 39 37 -1
|
||||
40 39 36 -1
|
||||
40 41 39 -1
|
||||
42 41 40 -1
|
||||
42 43 41 -1
|
||||
44 43 42 -1
|
||||
44 45 43 -1
|
||||
46 45 44 -1
|
||||
46 47 45 -1
|
||||
48 47 46 -1
|
||||
48 49 47 -1
|
||||
50 49 48 -1
|
||||
50 51 49 -1
|
||||
52 53 54 -1
|
||||
52 55 53 -1
|
||||
56 55 52 -1
|
||||
56 57 55 -1
|
||||
58 57 56 -1
|
||||
58 59 57 -1
|
||||
60 59 58 -1
|
||||
60 61 59 -1
|
||||
62 61 60 -1
|
||||
62 63 61 -1
|
||||
64 63 62 -1
|
||||
64 65 63 -1
|
||||
66 65 64 -1
|
||||
66 67 65 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
62
simulation/atlas/protos/LHandSolid.proto
Normal file
62
simulation/atlas/protos/LHandSolid.proto
Normal file
|
@ -0,0 +1,62 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LHandSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LHandMesh {
|
||||
}
|
||||
]
|
||||
name "LHand"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation 0 0.0526955 0.0
|
||||
rotation 1.0 0.0 0.0 3.14079632679
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.035939
|
||||
height 0.055117
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation 0.034375 0.002643 0
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.035939
|
||||
height 0.019
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation -0.0365945 0.002643 0
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.035939
|
||||
height 0.019
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 2.263
|
||||
centerOfMass 0 0.093 0
|
||||
inertiaMatrix [0.01 0.002 0.01, 0 0 0 ]
|
||||
}
|
||||
}
|
||||
}
|
902
simulation/atlas/protos/LLarmMesh.proto
Normal file
902
simulation/atlas/protos/LLarmMesh.proto
Normal file
|
@ -0,0 +1,902 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_larm.dae
|
||||
|
||||
PROTO LLarmMesh [
|
||||
]
|
||||
{
|
||||
Group {
|
||||
children [
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
0.065208 -0.033556 -0.03296
|
||||
0.046922 -0.043491 -0.01812
|
||||
0.046922 -0.033555 -0.03296
|
||||
0.065208 -0.043491 -0.01812
|
||||
0.046922 -0.046991 -0.000607
|
||||
0.065208 -0.046991 -0.000607
|
||||
0.046922 -0.043523 0.016911
|
||||
0.065208 -0.043523 0.016911
|
||||
0.046922 -0.033614 0.03177
|
||||
0.065208 -0.033614 0.03177
|
||||
0.046922 -0.018774 0.041705
|
||||
0.065208 -0.018774 0.041705
|
||||
0.046922 -0.001262 0.045205
|
||||
0.065208 -0.001262 0.045205
|
||||
0.046922 0.016258 0.041737
|
||||
0.065208 0.016258 0.041737
|
||||
0.046922 0.031115 0.031828
|
||||
0.065208 0.031115 0.031828
|
||||
0.046922 0.041051 0.016988
|
||||
0.065208 0.041051 0.016988
|
||||
0.046922 0.044551 -0.000524
|
||||
0.065208 0.044551 -0.000524
|
||||
0.046922 0.041082 -0.018043
|
||||
0.065208 0.041082 -0.018043
|
||||
0.046922 0.031174 -0.032902
|
||||
0.065208 0.031174 -0.032902
|
||||
0.046922 0.016334 -0.042836
|
||||
0.065208 0.016334 -0.042836
|
||||
0.046922 -0.001179 -0.046336
|
||||
0.065208 -0.001179 -0.046336
|
||||
0.046922 -0.018697 -0.042868
|
||||
0.065208 -0.018697 -0.042868
|
||||
0.046922 -0.018697 -0.042868
|
||||
0.046922 0.044551 -0.000524
|
||||
0.046922 -0.001179 -0.046336
|
||||
0.046922 -0.033555 -0.03296
|
||||
0.046922 0.041051 0.016988
|
||||
0.046922 -0.043491 -0.01812
|
||||
0.046922 0.031115 0.031828
|
||||
0.046922 -0.046991 -0.000607
|
||||
0.046922 0.016258 0.041737
|
||||
0.046922 -0.043523 0.016911
|
||||
0.046922 0.016258 0.041737
|
||||
0.046922 -0.046991 -0.000607
|
||||
0.046922 -0.001262 0.045205
|
||||
0.046922 -0.033614 0.03177
|
||||
0.046922 -0.018774 0.041705
|
||||
0.065208 -0.033614 0.03177
|
||||
0.065208 -0.043523 0.016911
|
||||
0.065208 -0.018774 0.041705
|
||||
0.065208 -0.043491 -0.01812
|
||||
0.065208 -0.001262 0.045205
|
||||
0.065208 -0.033556 -0.03296
|
||||
0.065208 0.016258 0.041737
|
||||
0.065208 -0.018697 -0.042868
|
||||
0.065208 0.031115 0.031828
|
||||
0.065208 -0.001179 -0.046336
|
||||
0.065208 0.041051 0.016988
|
||||
0.065208 0.016334 -0.042836
|
||||
0.065208 0.031174 -0.032902
|
||||
0.065208 0.041082 -0.018043
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
9 10 8 -1
|
||||
9 11 10 -1
|
||||
11 12 10 -1
|
||||
11 13 12 -1
|
||||
13 14 12 -1
|
||||
13 15 14 -1
|
||||
15 16 14 -1
|
||||
15 17 16 -1
|
||||
17 18 16 -1
|
||||
17 19 18 -1
|
||||
19 20 18 -1
|
||||
19 21 20 -1
|
||||
21 22 20 -1
|
||||
21 23 22 -1
|
||||
23 24 22 -1
|
||||
23 25 24 -1
|
||||
25 26 24 -1
|
||||
25 27 26 -1
|
||||
27 28 26 -1
|
||||
27 29 28 -1
|
||||
29 30 28 -1
|
||||
29 31 30 -1
|
||||
31 2 30 -1
|
||||
31 0 2 -1
|
||||
32 33 34 -1
|
||||
35 33 32 -1
|
||||
35 36 33 -1
|
||||
37 36 35 -1
|
||||
37 38 36 -1
|
||||
39 38 37 -1
|
||||
39 40 38 -1
|
||||
41 42 43 -1
|
||||
41 44 42 -1
|
||||
45 44 41 -1
|
||||
45 46 44 -1
|
||||
5 47 48 -1
|
||||
5 49 47 -1
|
||||
50 49 5 -1
|
||||
50 51 49 -1
|
||||
52 51 50 -1
|
||||
52 53 51 -1
|
||||
54 53 52 -1
|
||||
54 55 53 -1
|
||||
56 55 54 -1
|
||||
56 57 55 -1
|
||||
58 57 56 -1
|
||||
58 21 57 -1
|
||||
59 21 58 -1
|
||||
59 60 21 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.88087 0.79211
|
||||
0.87446 0.7974
|
||||
0.88171 0.79584
|
||||
0.87562 0.792
|
||||
0.86266 0.79092
|
||||
0.87132 0.789
|
||||
0.86514 0.78541
|
||||
0.86961 0.78439
|
||||
0.86683 0.77935
|
||||
0.86957 0.77908
|
||||
0.86784 0.77298
|
||||
0.87058 0.77363
|
||||
0.86799 0.76653
|
||||
0.87219 0.76823
|
||||
0.86694 0.76011
|
||||
0.8747 0.76392
|
||||
0.87752 0.75692
|
||||
0.87982 0.76252
|
||||
0.8874 0.75849
|
||||
0.88533 0.76385
|
||||
0.89544 0.76485
|
||||
0.88986 0.76765
|
||||
0.89715 0.77162
|
||||
0.89261 0.77285
|
||||
0.89786 0.77883
|
||||
0.89362 0.77859
|
||||
0.89732 0.78634
|
||||
0.89293 0.78417
|
||||
0.89561 0.79405
|
||||
0.89058 0.78861
|
||||
0.8889 0.79459
|
||||
0.88614 0.79093
|
||||
0.8889 0.79459
|
||||
0.90083 0.81708
|
||||
0.89561 0.79405
|
||||
0.88171 0.79584
|
||||
0.89657 0.82211
|
||||
0.87446 0.7974
|
||||
0.89094 0.82521
|
||||
0.87072 0.80259
|
||||
0.88453 0.82598
|
||||
0.86514 0.78541
|
||||
0.86694 0.76011
|
||||
0.86266 0.79092
|
||||
0.86799 0.76653
|
||||
0.86683 0.77935
|
||||
0.86784 0.77298
|
||||
0.86957 0.77908
|
||||
0.86961 0.78439
|
||||
0.87058 0.77363
|
||||
0.87562 0.792
|
||||
0.87219 0.76823
|
||||
0.88087 0.79211
|
||||
0.8747 0.76392
|
||||
0.88614 0.79093
|
||||
0.87982 0.76252
|
||||
0.89058 0.78861
|
||||
0.88533 0.76385
|
||||
0.89293 0.78417
|
||||
0.89362 0.77859
|
||||
0.89261 0.77285
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
9 10 8 -1
|
||||
9 11 10 -1
|
||||
11 12 10 -1
|
||||
11 13 12 -1
|
||||
13 14 12 -1
|
||||
13 15 14 -1
|
||||
15 16 14 -1
|
||||
15 17 16 -1
|
||||
17 18 16 -1
|
||||
17 19 18 -1
|
||||
19 20 18 -1
|
||||
19 21 20 -1
|
||||
21 22 20 -1
|
||||
21 23 22 -1
|
||||
23 24 22 -1
|
||||
23 25 24 -1
|
||||
25 26 24 -1
|
||||
25 27 26 -1
|
||||
27 28 26 -1
|
||||
27 29 28 -1
|
||||
29 30 28 -1
|
||||
29 31 30 -1
|
||||
31 2 30 -1
|
||||
31 0 2 -1
|
||||
32 33 34 -1
|
||||
35 33 32 -1
|
||||
35 36 33 -1
|
||||
37 36 35 -1
|
||||
37 38 36 -1
|
||||
39 38 37 -1
|
||||
39 40 38 -1
|
||||
41 42 43 -1
|
||||
41 44 42 -1
|
||||
45 44 41 -1
|
||||
45 46 44 -1
|
||||
5 47 48 -1
|
||||
5 49 47 -1
|
||||
50 49 5 -1
|
||||
50 51 49 -1
|
||||
52 51 50 -1
|
||||
52 53 51 -1
|
||||
54 53 52 -1
|
||||
54 55 53 -1
|
||||
56 55 54 -1
|
||||
56 57 55 -1
|
||||
58 57 56 -1
|
||||
58 21 57 -1
|
||||
59 21 58 -1
|
||||
59 60 21 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
-0.04615 -0.033556 -0.03296
|
||||
-0.065081 -0.043491 -0.01812
|
||||
-0.065081 -0.033556 -0.03296
|
||||
-0.04615 -0.043491 -0.01812
|
||||
-0.065081 -0.046991 -0.000607
|
||||
-0.04615 -0.046991 -0.000607
|
||||
-0.065081 -0.043523 0.016911
|
||||
-0.04615 -0.043523 0.016911
|
||||
-0.065081 -0.033614 0.03177
|
||||
-0.04615 -0.033614 0.03177
|
||||
-0.065081 -0.018774 0.041705
|
||||
-0.04615 -0.018774 0.041705
|
||||
-0.04615 -0.018774 0.041705
|
||||
-0.065081 -0.001262 0.045205
|
||||
-0.065081 -0.018774 0.041705
|
||||
-0.04615 -0.001262 0.045205
|
||||
-0.065081 0.016258 0.041737
|
||||
-0.04615 0.016258 0.041737
|
||||
-0.065081 0.031115 0.031828
|
||||
-0.04615 0.031115 0.031828
|
||||
-0.065081 0.041051 0.016988
|
||||
-0.04615 0.041051 0.016988
|
||||
-0.065081 0.044551 -0.000524
|
||||
-0.04615 0.044551 -0.000524
|
||||
-0.065081 0.041082 -0.018043
|
||||
-0.04615 0.041082 -0.018043
|
||||
-0.065081 0.031174 -0.032902
|
||||
-0.04615 0.031174 -0.032902
|
||||
-0.065081 0.016334 -0.042836
|
||||
-0.04615 0.016334 -0.042836
|
||||
-0.065081 -0.001179 -0.046336
|
||||
-0.04615 -0.001179 -0.046336
|
||||
-0.065081 -0.018697 -0.042868
|
||||
-0.04615 -0.018697 -0.042868
|
||||
-0.065081 0.016334 -0.042836
|
||||
-0.065081 0.041082 -0.018043
|
||||
-0.065081 0.031174 -0.032902
|
||||
-0.065081 0.044551 -0.000524
|
||||
-0.065081 -0.001179 -0.046336
|
||||
-0.065081 0.041051 0.016988
|
||||
-0.065081 -0.018697 -0.042868
|
||||
-0.065081 -0.033556 -0.03296
|
||||
-0.065081 0.016258 0.041737
|
||||
-0.065081 -0.043491 -0.01812
|
||||
-0.065081 -0.001262 0.045205
|
||||
-0.065081 -0.046991 -0.000607
|
||||
-0.065081 -0.018774 0.041705
|
||||
-0.065081 -0.043523 0.016911
|
||||
-0.065081 -0.018774 0.041705
|
||||
-0.04615 -0.033556 -0.03296
|
||||
-0.04615 -0.046991 -0.000607
|
||||
-0.04615 -0.043491 -0.01812
|
||||
-0.04615 -0.018697 -0.042868
|
||||
-0.04615 -0.043523 0.016911
|
||||
-0.04615 -0.001179 -0.046336
|
||||
-0.04615 -0.033614 0.03177
|
||||
-0.04615 0.044551 -0.000524
|
||||
-0.04615 -0.018774 0.041705
|
||||
-0.04615 0.041051 0.016988
|
||||
-0.04615 -0.001262 0.045205
|
||||
-0.04615 0.031115 0.031828
|
||||
-0.04615 0.016258 0.041737
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
9 10 8 -1
|
||||
9 11 10 -1
|
||||
12 13 14 -1
|
||||
12 15 13 -1
|
||||
15 16 13 -1
|
||||
15 17 16 -1
|
||||
17 18 16 -1
|
||||
17 19 18 -1
|
||||
19 20 18 -1
|
||||
19 21 20 -1
|
||||
21 22 20 -1
|
||||
21 23 22 -1
|
||||
23 24 22 -1
|
||||
23 25 24 -1
|
||||
25 26 24 -1
|
||||
25 27 26 -1
|
||||
27 28 26 -1
|
||||
27 29 28 -1
|
||||
29 30 28 -1
|
||||
29 31 30 -1
|
||||
31 32 30 -1
|
||||
31 33 32 -1
|
||||
33 2 32 -1
|
||||
33 0 2 -1
|
||||
34 35 36 -1
|
||||
34 37 35 -1
|
||||
38 37 34 -1
|
||||
38 39 37 -1
|
||||
40 39 38 -1
|
||||
40 18 39 -1
|
||||
41 18 40 -1
|
||||
41 42 18 -1
|
||||
43 42 41 -1
|
||||
43 44 42 -1
|
||||
45 44 43 -1
|
||||
45 46 44 -1
|
||||
47 46 45 -1
|
||||
47 8 48 -1
|
||||
49 50 51 -1
|
||||
52 50 49 -1
|
||||
52 53 50 -1
|
||||
54 53 52 -1
|
||||
54 55 53 -1
|
||||
56 55 54 -1
|
||||
56 57 55 -1
|
||||
58 57 56 -1
|
||||
58 59 57 -1
|
||||
60 59 58 -1
|
||||
60 61 59 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.94333 0.78791
|
||||
0.95073 0.78503
|
||||
0.94498 0.78474
|
||||
0.94911 0.78842
|
||||
0.95592 0.78507
|
||||
0.95402 0.78997
|
||||
0.96023 0.78383
|
||||
0.9574 0.79255
|
||||
0.96357 0.79165
|
||||
0.95951 0.79738
|
||||
0.96822 0.79792
|
||||
0.96051 0.80282
|
||||
0.96735 0.76516
|
||||
0.95895 0.76523
|
||||
0.96218 0.77087
|
||||
0.96249 0.75973
|
||||
0.95378 0.76116
|
||||
0.95568 0.7552
|
||||
0.94748 0.75943
|
||||
0.94706 0.75329
|
||||
0.94115 0.76037
|
||||
0.93778 0.75521
|
||||
0.93604 0.76376
|
||||
0.92949 0.76158
|
||||
0.9332 0.7687
|
||||
0.92809 0.76869
|
||||
0.93213 0.77422
|
||||
0.92768 0.77592
|
||||
0.93281 0.77943
|
||||
0.92856 0.78305
|
||||
0.93524 0.78337
|
||||
0.93053 0.78992
|
||||
0.93948 0.78438
|
||||
0.93706 0.78843
|
||||
0.93281 0.77943
|
||||
0.9332 0.7687
|
||||
0.93213 0.77422
|
||||
0.93604 0.76376
|
||||
0.93524 0.78337
|
||||
0.94115 0.76037
|
||||
0.93948 0.78438
|
||||
0.94498 0.78474
|
||||
0.95378 0.76116
|
||||
0.95073 0.78503
|
||||
0.95895 0.76523
|
||||
0.95592 0.78507
|
||||
0.96218 0.77087
|
||||
0.96023 0.78383
|
||||
0.96822 0.79792
|
||||
0.94333 0.78791
|
||||
0.95402 0.78997
|
||||
0.94911 0.78842
|
||||
0.93706 0.78843
|
||||
0.9574 0.79255
|
||||
0.93053 0.78992
|
||||
0.95951 0.79738
|
||||
0.93446 0.81296
|
||||
0.96051 0.80282
|
||||
0.9408 0.81539
|
||||
0.95808 0.80851
|
||||
0.9475 0.81535
|
||||
0.95354 0.81292
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
9 10 8 -1
|
||||
9 11 10 -1
|
||||
12 13 14 -1
|
||||
12 15 13 -1
|
||||
15 16 13 -1
|
||||
15 17 16 -1
|
||||
17 18 16 -1
|
||||
17 19 18 -1
|
||||
19 20 18 -1
|
||||
19 21 20 -1
|
||||
21 22 20 -1
|
||||
21 23 22 -1
|
||||
23 24 22 -1
|
||||
23 25 24 -1
|
||||
25 26 24 -1
|
||||
25 27 26 -1
|
||||
27 28 26 -1
|
||||
27 29 28 -1
|
||||
29 30 28 -1
|
||||
29 31 30 -1
|
||||
31 32 30 -1
|
||||
31 33 32 -1
|
||||
33 2 32 -1
|
||||
33 0 2 -1
|
||||
34 35 36 -1
|
||||
34 37 35 -1
|
||||
38 37 34 -1
|
||||
38 39 37 -1
|
||||
40 39 38 -1
|
||||
40 18 39 -1
|
||||
41 18 40 -1
|
||||
41 42 18 -1
|
||||
43 42 41 -1
|
||||
43 44 42 -1
|
||||
45 44 43 -1
|
||||
45 46 44 -1
|
||||
47 46 45 -1
|
||||
47 8 48 -1
|
||||
49 50 51 -1
|
||||
52 50 49 -1
|
||||
52 53 50 -1
|
||||
54 53 52 -1
|
||||
54 55 53 -1
|
||||
56 55 54 -1
|
||||
56 57 55 -1
|
||||
58 57 56 -1
|
||||
58 59 57 -1
|
||||
60 59 58 -1
|
||||
60 61 59 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
-0.04615 0.016334 -0.042836
|
||||
0.046922 -0.001179 -0.046336
|
||||
-0.04615 -0.001179 -0.046336
|
||||
0.046922 0.016334 -0.042836
|
||||
-0.04615 0.031174 -0.032902
|
||||
0.046922 0.031174 -0.032902
|
||||
-0.04615 0.041082 -0.018043
|
||||
0.046922 0.041082 -0.018043
|
||||
-0.04615 0.044551 -0.000524
|
||||
0.046922 0.044551 -0.000524
|
||||
0.046922 0.044551 -0.000524
|
||||
-0.04615 -0.001179 -0.046336
|
||||
0.046922 -0.001179 -0.046336
|
||||
-0.04615 0.044551 -0.000524
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
4 3 0 -1
|
||||
4 5 3 -1
|
||||
6 5 4 -1
|
||||
6 7 5 -1
|
||||
8 7 6 -1
|
||||
8 9 7 -1
|
||||
10 11 12 -1
|
||||
10 13 11 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.92856 0.78305
|
||||
0.89561 0.79405
|
||||
0.93053 0.78992
|
||||
0.89732 0.78634
|
||||
0.92768 0.77592
|
||||
0.89786 0.77883
|
||||
0.92809 0.76869
|
||||
0.89715 0.77162
|
||||
0.92949 0.76158
|
||||
0.89544 0.76485
|
||||
0.90083 0.81708
|
||||
0.93053 0.78992
|
||||
0.89561 0.79405
|
||||
0.93446 0.81296
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
4 3 0 -1
|
||||
4 5 3 -1
|
||||
6 5 4 -1
|
||||
6 7 5 -1
|
||||
8 7 6 -1
|
||||
8 9 7 -1
|
||||
10 11 12 -1
|
||||
10 13 11 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
0.044252 0.035201 -0.0118
|
||||
0.040887 0.188105 0.005115
|
||||
0.040887 0.049884 0.005115
|
||||
0.044252 0.188105 -0.0118
|
||||
0.031305 0.188105 0.019456
|
||||
0.031305 0.062305 0.019456
|
||||
0.016964 0.188105 0.029039
|
||||
0.016964 0.070574 0.029039
|
||||
4.8e-05 0.188105 0.032403
|
||||
4.8e-05 0.073431 0.032403
|
||||
4.8e-05 0.188105 0.032403
|
||||
-0.031209 0.188105 -0.043057
|
||||
-0.016867 0.000652 -0.052639
|
||||
-0.031209 0.007998 -0.043057
|
||||
-0.016867 0.188105 -0.052639
|
||||
4.8e-05 -0.000778 -0.056004
|
||||
4.8e-05 0.188105 -0.056004
|
||||
0.016964 0.000652 -0.052639
|
||||
0.016965 0.188105 -0.052639
|
||||
0.031305 0.007998 -0.043057
|
||||
0.031305 0.188105 -0.043057
|
||||
0.040887 0.020494 -0.028717
|
||||
0.040887 0.188105 -0.028717
|
||||
0.044252 0.035201 -0.0118
|
||||
0.016964 0.000652 -0.052639
|
||||
0.031305 0.007998 -0.043057
|
||||
4.8e-05 -0.000778 -0.056004
|
||||
-0.044156 0.035813 -0.0118
|
||||
-0.016867 0.000652 -0.052639
|
||||
-0.031209 0.007998 -0.043057
|
||||
-0.044156 0.035813 -0.0118
|
||||
-0.040791 0.02086 -0.028717
|
||||
-0.040791 0.050581 0.005115
|
||||
0.040887 0.049884 0.005115
|
||||
-0.031209 0.062917 0.019456
|
||||
-0.016867 0.070941 0.029039
|
||||
0.031305 0.007998 -0.043057
|
||||
0.040887 0.020494 -0.028717
|
||||
0.016964 0.188105 0.029039
|
||||
0.031305 0.188105 0.019456
|
||||
0.040887 0.188105 0.005115
|
||||
-0.016867 0.188105 0.029039
|
||||
-0.040791 0.188105 0.005115
|
||||
-0.031209 0.188105 0.019456
|
||||
4.8e-05 0.188105 0.032403
|
||||
4.8e-05 0.188105 0.032403
|
||||
-0.040791 0.188105 0.005115
|
||||
-0.040791 0.188105 -0.028717
|
||||
-0.016867 0.188105 -0.052639
|
||||
-0.031209 0.188105 -0.043057
|
||||
-0.044156 0.188105 -0.0118
|
||||
0.016965 0.188105 -0.052639
|
||||
4.8e-05 0.188105 -0.056004
|
||||
0.040887 0.188105 -0.028717
|
||||
0.031305 0.188105 -0.043057
|
||||
0.044252 0.188105 -0.0118
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
2 4 5 -1
|
||||
2 1 4 -1
|
||||
5 6 7 -1
|
||||
5 4 6 -1
|
||||
7 8 9 -1
|
||||
7 6 10 -1
|
||||
11 12 13 -1
|
||||
11 14 12 -1
|
||||
14 15 12 -1
|
||||
14 16 15 -1
|
||||
16 17 15 -1
|
||||
16 18 17 -1
|
||||
18 19 17 -1
|
||||
18 20 19 -1
|
||||
20 21 19 -1
|
||||
20 22 21 -1
|
||||
21 3 0 -1
|
||||
21 22 3 -1
|
||||
23 24 25 -1
|
||||
23 26 24 -1
|
||||
27 28 26 -1
|
||||
27 29 28 -1
|
||||
30 31 29 -1
|
||||
23 27 26 -1
|
||||
23 32 27 -1
|
||||
33 32 23 -1
|
||||
33 34 32 -1
|
||||
5 34 33 -1
|
||||
5 35 34 -1
|
||||
7 35 5 -1
|
||||
7 9 35 -1
|
||||
23 36 37 -1
|
||||
38 39 40 -1
|
||||
41 42 43 -1
|
||||
44 42 41 -1
|
||||
45 38 46 -1
|
||||
47 48 49 -1
|
||||
50 48 47 -1
|
||||
50 46 48 -1
|
||||
51 52 48 -1
|
||||
53 54 51 -1
|
||||
53 51 48 -1
|
||||
53 48 46 -1
|
||||
53 46 38 -1
|
||||
53 38 40 -1
|
||||
53 40 55 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.58637 0.86433
|
||||
0.55247 0.86901
|
||||
0.58808 0.86576
|
||||
0.55245 0.86512
|
||||
0.55126 0.87253
|
||||
0.58903 0.86648
|
||||
0.54856 0.8756
|
||||
0.59302 0.87093
|
||||
0.59077 0.82473
|
||||
0.59 0.86219
|
||||
0.54648 0.87734
|
||||
0.55237 0.83916
|
||||
0.57766 0.8536
|
||||
0.57739 0.85148
|
||||
0.55099 0.84259
|
||||
0.57869 0.85617
|
||||
0.55187 0.84737
|
||||
0.58013 0.85893
|
||||
0.55224 0.85217
|
||||
0.58206 0.86155
|
||||
0.55216 0.85682
|
||||
0.58431 0.8635
|
||||
0.55133 0.86113
|
||||
0.58637 0.86433
|
||||
0.58013 0.85893
|
||||
0.58206 0.86155
|
||||
0.57869 0.85617
|
||||
0.5787 0.85027
|
||||
0.57766 0.8536
|
||||
0.57739 0.85148
|
||||
0.5787 0.85027
|
||||
0.57767 0.8502
|
||||
0.58143 0.85005
|
||||
0.58808 0.86576
|
||||
0.58417 0.8507
|
||||
0.5866 0.85544
|
||||
0.58206 0.86155
|
||||
0.58431 0.8635
|
||||
0.54856 0.8756
|
||||
0.55126 0.87253
|
||||
0.55247 0.86901
|
||||
0.58363 0.82682
|
||||
0.56791 0.82826
|
||||
0.57594 0.82814
|
||||
0.59077 0.82473
|
||||
0.54648 0.87734
|
||||
0.5387 0.84915
|
||||
0.55301 0.83558
|
||||
0.55099 0.84259
|
||||
0.55237 0.83916
|
||||
0.54559 0.84102
|
||||
0.55224 0.85217
|
||||
0.55187 0.84737
|
||||
0.55133 0.86113
|
||||
0.55216 0.85682
|
||||
0.55245 0.86512
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
2 4 5 -1
|
||||
2 1 4 -1
|
||||
5 6 7 -1
|
||||
5 4 6 -1
|
||||
7 8 9 -1
|
||||
7 6 10 -1
|
||||
11 12 13 -1
|
||||
11 14 12 -1
|
||||
14 15 12 -1
|
||||
14 16 15 -1
|
||||
16 17 15 -1
|
||||
16 18 17 -1
|
||||
18 19 17 -1
|
||||
18 20 19 -1
|
||||
20 21 19 -1
|
||||
20 22 21 -1
|
||||
21 3 0 -1
|
||||
21 22 3 -1
|
||||
23 24 25 -1
|
||||
23 26 24 -1
|
||||
27 28 26 -1
|
||||
27 29 28 -1
|
||||
30 31 29 -1
|
||||
23 27 26 -1
|
||||
23 32 27 -1
|
||||
33 32 23 -1
|
||||
33 34 32 -1
|
||||
5 34 33 -1
|
||||
5 35 34 -1
|
||||
7 35 5 -1
|
||||
7 9 35 -1
|
||||
23 36 37 -1
|
||||
38 39 40 -1
|
||||
41 42 43 -1
|
||||
44 42 41 -1
|
||||
45 38 46 -1
|
||||
47 48 49 -1
|
||||
50 48 47 -1
|
||||
50 46 48 -1
|
||||
51 52 48 -1
|
||||
53 54 51 -1
|
||||
53 51 48 -1
|
||||
53 48 46 -1
|
||||
53 46 38 -1
|
||||
53 38 40 -1
|
||||
53 40 55 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
-0.031209 0.007998 -0.043057
|
||||
-0.040791 0.188105 -0.028717
|
||||
-0.031209 0.188105 -0.043057
|
||||
-0.040791 0.02086 -0.028717
|
||||
-0.044156 0.188105 -0.0118
|
||||
-0.044156 0.035813 -0.0118
|
||||
-0.040791 0.188105 0.005115
|
||||
-0.040791 0.050581 0.005115
|
||||
-0.031209 0.188105 0.019456
|
||||
-0.031209 0.062917 0.019456
|
||||
-0.016867 0.188105 0.029039
|
||||
-0.016867 0.070941 0.029039
|
||||
4.8e-05 0.188105 0.032403
|
||||
4.8e-05 0.073431 0.032403
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
9 10 8 -1
|
||||
9 11 10 -1
|
||||
11 12 10 -1
|
||||
11 13 12 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.57739 0.85148
|
||||
0.55301 0.83558
|
||||
0.55237 0.83916
|
||||
0.57767 0.8502
|
||||
0.56 0.83122
|
||||
0.5787 0.85027
|
||||
0.56791 0.82826
|
||||
0.58143 0.85005
|
||||
0.57594 0.82814
|
||||
0.58417 0.8507
|
||||
0.58363 0.82682
|
||||
0.5866 0.85544
|
||||
0.59077 0.82473
|
||||
0.59 0.86219
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
3 4 1 -1
|
||||
3 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
7 9 8 -1
|
||||
9 10 8 -1
|
||||
9 11 10 -1
|
||||
11 12 10 -1
|
||||
11 13 12 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
62
simulation/atlas/protos/LLarmSolid.proto
Normal file
62
simulation/atlas/protos/LLarmSolid.proto
Normal file
|
@ -0,0 +1,62 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LLarmSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LLarmMesh {
|
||||
}
|
||||
]
|
||||
name "LLarm"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation 0.056065 0 0
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.045
|
||||
height 0.0161
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation -0.0556155 0 0
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.045
|
||||
height 0.0161
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation 0 0.0940525 0.0
|
||||
rotation 1.0 0.0 0.0 3.14079632679
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.045
|
||||
height 0.188105
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 2.148
|
||||
centerOfMass -0.003 0.099 -0.014
|
||||
inertiaMatrix [0.005 0.003 0.006, 0 0 0 ]
|
||||
}
|
||||
}
|
||||
}
|
581
simulation/atlas/protos/LLglutMesh.proto
Normal file
581
simulation/atlas/protos/LLglutMesh.proto
Normal file
|
@ -0,0 +1,581 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_lglut.dae
|
||||
|
||||
PROTO LLglutMesh [
|
||||
]
|
||||
{
|
||||
Group {
|
||||
children [
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
0.06026 0.020226 -0.02506
|
||||
0.059772 0.019738 -0.020012
|
||||
0.060394 -0.007519 -0.030704
|
||||
0.059772 -0.007519 -0.02506
|
||||
0.061236 0.023503 -0.030704
|
||||
0.030054 0.019738 -0.021619
|
||||
0.030048 0.020329 -0.030101
|
||||
0.030054 0.019738 -0.021619
|
||||
0.028647 -0.007519 -0.02506
|
||||
0.030094 -0.007519 -0.030704
|
||||
0.059772 -0.013992 -0.012642
|
||||
0.020981 -0.01197 -0.015175
|
||||
0.059772 -0.008392 -0.020012
|
||||
0.020981 -0.01197 -0.015175
|
||||
0.025649 -0.008392 -0.020149
|
||||
0.025649 -0.008392 -0.020149
|
||||
0.059772 -0.007519 -0.02506
|
||||
0.028647 -0.007519 -0.02506
|
||||
0.060394 -0.007519 -0.030704
|
||||
0.031437 -0.007519 -0.054178
|
||||
0.065656 -0.007519 -0.04954
|
||||
0.030094 -0.007519 -0.039205
|
||||
0.065656 -0.007519 -0.039205
|
||||
0.059772 0.018776 0.005205
|
||||
0.059772 -0.008392 -0.020012
|
||||
0.059772 -0.013992 -0.012642
|
||||
0.065656 -0.007519 -0.04954
|
||||
0.063869 0.040643 -0.04954
|
||||
0.065656 -0.007519 -0.039205
|
||||
0.063869 0.035114 -0.039205
|
||||
0.020981 0.018776 0.005205
|
||||
0.059772 0.018776 0.005205
|
||||
0.027391 0.019738 -0.011886
|
||||
0.059772 0.019738 -0.020012
|
||||
0.063869 0.040643 -0.04954
|
||||
0.031391 0.029412 -0.053576
|
||||
0.030048 0.023883 -0.038603
|
||||
0.063869 0.035114 -0.039205
|
||||
0.030048 0.020329 -0.030101
|
||||
0.027391 0.019738 -0.011886
|
||||
0.031437 -0.007519 -0.054178
|
||||
0.030094 -0.007519 -0.039205
|
||||
0.030094 -0.007519 -0.030704
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
1 3 2 -1
|
||||
2 4 0 -1
|
||||
5 0 4 -1
|
||||
4 6 7 -1
|
||||
8 7 6 -1
|
||||
6 9 8 -1
|
||||
10 11 12 -1
|
||||
13 14 12 -1
|
||||
12 15 16 -1
|
||||
15 17 16 -1
|
||||
18 16 9 -1
|
||||
16 17 9 -1
|
||||
19 20 21 -1
|
||||
20 22 21 -1
|
||||
21 22 9 -1
|
||||
22 18 9 -1
|
||||
1 23 24 -1
|
||||
23 25 24 -1
|
||||
3 1 24 -1
|
||||
26 27 28 -1
|
||||
27 29 28 -1
|
||||
28 29 4 -1
|
||||
4 2 28 -1
|
||||
30 31 32 -1
|
||||
31 33 32 -1
|
||||
32 33 0 -1
|
||||
0 5 32 -1
|
||||
34 35 36 -1
|
||||
36 37 34 -1
|
||||
37 36 6 -1
|
||||
38 4 37 -1
|
||||
11 30 39 -1
|
||||
39 14 11 -1
|
||||
14 39 7 -1
|
||||
7 8 14 -1
|
||||
35 40 36 -1
|
||||
40 41 36 -1
|
||||
36 41 6 -1
|
||||
41 42 6 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.71731 0.91993
|
||||
0.71926 0.91979
|
||||
0.71724 0.90958
|
||||
0.71895 0.90978
|
||||
0.71489 0.92036
|
||||
0.7218 0.93105
|
||||
0.71885 0.93191
|
||||
0.7218 0.93105
|
||||
0.72411 0.94173
|
||||
0.72202 0.94222
|
||||
0.7286 0.9535
|
||||
0.72839 0.94064
|
||||
0.72535 0.95307
|
||||
0.72839 0.94064
|
||||
0.72606 0.94114
|
||||
0.72606 0.94114
|
||||
0.72365 0.95294
|
||||
0.72411 0.94173
|
||||
0.72184 0.95324
|
||||
0.71382 0.94407
|
||||
0.71547 0.95541
|
||||
0.71901 0.94272
|
||||
0.71901 0.95523
|
||||
0.72811 0.91854
|
||||
0.72053 0.90963
|
||||
0.72323 0.90773
|
||||
0.71067 0.90768
|
||||
0.70642 0.92278
|
||||
0.71418 0.90878
|
||||
0.71048 0.92198
|
||||
0.73184 0.9301
|
||||
0.72811 0.91854
|
||||
0.72532 0.93063
|
||||
0.71926 0.91979
|
||||
0.70642 0.92278
|
||||
0.70978 0.93331
|
||||
0.71552 0.93253
|
||||
0.71048 0.92198
|
||||
0.71885 0.93191
|
||||
0.72532 0.93063
|
||||
0.71382 0.94407
|
||||
0.71901 0.94272
|
||||
0.72202 0.94222
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
1 3 2 -1
|
||||
2 4 0 -1
|
||||
5 0 4 -1
|
||||
4 6 7 -1
|
||||
8 7 6 -1
|
||||
6 9 8 -1
|
||||
10 11 12 -1
|
||||
13 14 12 -1
|
||||
12 15 16 -1
|
||||
15 17 16 -1
|
||||
18 16 9 -1
|
||||
16 17 9 -1
|
||||
19 20 21 -1
|
||||
20 22 21 -1
|
||||
21 22 9 -1
|
||||
22 18 9 -1
|
||||
1 23 24 -1
|
||||
23 25 24 -1
|
||||
3 1 24 -1
|
||||
26 27 28 -1
|
||||
27 29 28 -1
|
||||
28 29 4 -1
|
||||
4 2 28 -1
|
||||
30 31 32 -1
|
||||
31 33 32 -1
|
||||
32 33 0 -1
|
||||
0 5 32 -1
|
||||
34 35 36 -1
|
||||
36 37 34 -1
|
||||
37 36 6 -1
|
||||
38 4 37 -1
|
||||
11 30 39 -1
|
||||
39 14 11 -1
|
||||
14 39 7 -1
|
||||
7 8 14 -1
|
||||
35 40 36 -1
|
||||
40 41 36 -1
|
||||
36 41 6 -1
|
||||
41 42 6 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
-0.05994 9.2e-05 0.020053
|
||||
-0.05994 0.011863 0.016228
|
||||
-0.05994 -0.011681 0.016228
|
||||
-0.05994 0.019139 0.006213
|
||||
-0.05994 -0.018956 0.006213
|
||||
-0.05994 0.019139 -0.006164
|
||||
-0.05994 -0.018956 -0.006164
|
||||
-0.05994 0.011863 -0.016178
|
||||
-0.05994 -0.011681 -0.016178
|
||||
-0.05994 9.2e-05 -0.020003
|
||||
0.060048 0.019139 0.006213
|
||||
0.060048 0.011863 0.016228
|
||||
0.060048 0.019139 -0.006164
|
||||
0.060048 9.2e-05 0.020053
|
||||
0.060048 0.011863 -0.016178
|
||||
0.060048 -0.011681 0.016228
|
||||
0.060048 9.2e-05 -0.020003
|
||||
0.060048 -0.018956 0.006213
|
||||
0.060048 -0.011681 -0.016178
|
||||
0.060048 -0.018956 -0.006164
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
1 3 2 -1
|
||||
2 3 4 -1
|
||||
3 5 4 -1
|
||||
4 5 6 -1
|
||||
5 7 6 -1
|
||||
6 7 8 -1
|
||||
7 9 8 -1
|
||||
10 11 12 -1
|
||||
11 13 12 -1
|
||||
12 13 14 -1
|
||||
13 15 14 -1
|
||||
14 15 16 -1
|
||||
15 17 16 -1
|
||||
16 17 18 -1
|
||||
17 19 18 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.16235 0.73129
|
||||
0.16305 0.7352
|
||||
0.16428 0.72766
|
||||
0.16541 0.73944
|
||||
0.16761 0.72544
|
||||
0.17048 0.73929
|
||||
0.17159 0.72538
|
||||
0.17445 0.73637
|
||||
0.17483 0.72779
|
||||
0.17601 0.73195
|
||||
0.12226 0.7399
|
||||
0.12293 0.73584
|
||||
0.11819 0.74211
|
||||
0.12223 0.73166
|
||||
0.11368 0.74138
|
||||
0.11925 0.72849
|
||||
0.1104 0.73816
|
||||
0.11513 0.72762
|
||||
0.10953 0.73372
|
||||
0.11137 0.72971
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
1 3 2 -1
|
||||
2 3 4 -1
|
||||
3 5 4 -1
|
||||
4 5 6 -1
|
||||
5 7 6 -1
|
||||
6 7 8 -1
|
||||
7 9 8 -1
|
||||
10 11 12 -1
|
||||
11 13 12 -1
|
||||
12 13 14 -1
|
||||
13 15 14 -1
|
||||
14 15 16 -1
|
||||
15 17 16 -1
|
||||
16 17 18 -1
|
||||
17 19 18 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
-0.05994 0.011863 0.016228
|
||||
-0.05994 9.2e-05 0.020053
|
||||
0.060048 0.011863 0.016228
|
||||
0.060048 9.2e-05 0.020053
|
||||
-0.05994 0.019139 0.006213
|
||||
0.060048 0.019139 0.006213
|
||||
-0.05994 0.019139 -0.006164
|
||||
0.060048 0.019139 -0.006164
|
||||
-0.05994 0.011863 -0.016178
|
||||
0.060048 0.011863 -0.016178
|
||||
-0.05994 9.2e-05 -0.020003
|
||||
0.060048 9.2e-05 -0.020003
|
||||
-0.05994 -0.011681 -0.016178
|
||||
0.060048 -0.011681 -0.016178
|
||||
0.060048 9.2e-05 -0.020003
|
||||
-0.05994 -0.018956 -0.006164
|
||||
0.060048 -0.018956 -0.006164
|
||||
-0.05994 -0.018956 0.006213
|
||||
0.060048 -0.018956 0.006213
|
||||
-0.05994 -0.011681 0.016228
|
||||
0.060048 -0.011681 0.016228
|
||||
-0.05994 9.2e-05 0.020053
|
||||
0.060048 9.2e-05 0.020053
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
1 3 2 -1
|
||||
4 2 5 -1
|
||||
0 2 4 -1
|
||||
6 5 7 -1
|
||||
4 5 6 -1
|
||||
8 7 9 -1
|
||||
6 7 8 -1
|
||||
10 9 11 -1
|
||||
8 9 10 -1
|
||||
12 10 13 -1
|
||||
10 14 13 -1
|
||||
15 13 16 -1
|
||||
12 13 15 -1
|
||||
17 15 18 -1
|
||||
15 16 18 -1
|
||||
19 17 20 -1
|
||||
17 18 20 -1
|
||||
21 19 22 -1
|
||||
19 20 22 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.16305 0.7352
|
||||
0.16271 0.7349
|
||||
0.12293 0.73584
|
||||
0.12305 0.73151
|
||||
0.16541 0.73944
|
||||
0.12226 0.7399
|
||||
0.16548 0.74389
|
||||
0.12234 0.74421
|
||||
0.16554 0.74834
|
||||
0.12241 0.74851
|
||||
0.16559 0.75277
|
||||
0.12247 0.75277
|
||||
0.16559 0.7572
|
||||
0.12251 0.75719
|
||||
0.12247 0.75277
|
||||
0.16558 0.76162
|
||||
0.12254 0.7616
|
||||
0.16553 0.76604
|
||||
0.12258 0.76601
|
||||
0.16546 0.77047
|
||||
0.12263 0.77042
|
||||
0.16534 0.7749
|
||||
0.12271 0.77482
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
1 3 2 -1
|
||||
4 2 5 -1
|
||||
0 2 4 -1
|
||||
6 5 7 -1
|
||||
4 5 6 -1
|
||||
8 7 9 -1
|
||||
6 7 8 -1
|
||||
10 9 11 -1
|
||||
8 9 10 -1
|
||||
12 10 13 -1
|
||||
10 14 13 -1
|
||||
15 13 16 -1
|
||||
12 13 15 -1
|
||||
17 15 18 -1
|
||||
15 16 18 -1
|
||||
19 17 20 -1
|
||||
17 18 20 -1
|
||||
21 19 22 -1
|
||||
19 20 22 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
0.049968 0.052641 -0.030089
|
||||
0.06174 0.052641 -0.033914
|
||||
0.038196 0.052641 -0.033914
|
||||
0.069016 0.052641 -0.043927
|
||||
0.03092 0.052641 -0.043927
|
||||
0.069016 0.052641 -0.056306
|
||||
0.03092 0.052641 -0.056306
|
||||
0.06174 0.052641 -0.06632
|
||||
0.038196 0.052641 -0.06632
|
||||
0.049968 0.052641 -0.070145
|
||||
0.069016 -0.007665 -0.043927
|
||||
0.06174 -0.007665 -0.033914
|
||||
0.069016 -0.007665 -0.056306
|
||||
0.049968 -0.007665 -0.030089
|
||||
0.06174 -0.007665 -0.06632
|
||||
0.038196 -0.007665 -0.033914
|
||||
0.049968 -0.007665 -0.070145
|
||||
0.03092 -0.007665 -0.043927
|
||||
0.038196 -0.007665 -0.06632
|
||||
0.03092 -0.007665 -0.056305
|
||||
0.038196 -0.007665 -0.06632
|
||||
0.06174 0.052641 -0.033914
|
||||
0.049968 0.052641 -0.030089
|
||||
0.06174 -0.007665 -0.033914
|
||||
0.049968 -0.007665 -0.030089
|
||||
0.069016 0.052641 -0.043927
|
||||
0.069016 -0.007665 -0.043927
|
||||
0.069016 0.052641 -0.056306
|
||||
0.069016 -0.007665 -0.056306
|
||||
0.06174 0.052641 -0.06632
|
||||
0.06174 -0.007665 -0.06632
|
||||
0.049968 0.052641 -0.070145
|
||||
0.049968 -0.007665 -0.070145
|
||||
0.038196 0.052641 -0.06632
|
||||
0.038196 -0.007665 -0.06632
|
||||
0.038196 -0.007665 -0.06632
|
||||
0.03092 0.052641 -0.056306
|
||||
0.03092 -0.007665 -0.056305
|
||||
0.03092 0.052641 -0.043927
|
||||
0.03092 -0.007665 -0.043927
|
||||
0.038196 0.052641 -0.033914
|
||||
0.038196 -0.007665 -0.033914
|
||||
0.049968 -0.007665 -0.030089
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
1 3 2 -1
|
||||
2 3 4 -1
|
||||
3 5 4 -1
|
||||
4 5 6 -1
|
||||
5 7 6 -1
|
||||
6 7 8 -1
|
||||
7 9 8 -1
|
||||
10 11 12 -1
|
||||
11 13 12 -1
|
||||
12 13 14 -1
|
||||
13 15 14 -1
|
||||
14 15 16 -1
|
||||
15 17 16 -1
|
||||
16 17 18 -1
|
||||
17 19 20 -1
|
||||
21 22 23 -1
|
||||
22 24 23 -1
|
||||
25 21 26 -1
|
||||
21 23 26 -1
|
||||
27 25 28 -1
|
||||
25 26 28 -1
|
||||
29 27 30 -1
|
||||
27 28 30 -1
|
||||
31 29 32 -1
|
||||
29 30 32 -1
|
||||
33 31 34 -1
|
||||
31 32 35 -1
|
||||
36 33 37 -1
|
||||
33 34 37 -1
|
||||
38 36 39 -1
|
||||
36 37 39 -1
|
||||
40 38 41 -1
|
||||
38 39 41 -1
|
||||
22 40 42 -1
|
||||
40 41 42 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.02138 0.49721
|
||||
0.02259 0.49683
|
||||
0.02069 0.49649
|
||||
0.02366 0.49547
|
||||
0.02094 0.49498
|
||||
0.02416 0.49364
|
||||
0.02106 0.4916
|
||||
0.02445 0.4921
|
||||
0.02264 0.48902
|
||||
0.02483 0.4868
|
||||
0.02261 0.50569
|
||||
0.01989 0.50583
|
||||
0.025 0.50638
|
||||
0.01719 0.50658
|
||||
0.0269 0.50765
|
||||
0.01473 0.50737
|
||||
0.02822 0.5088
|
||||
0.01305 0.50756
|
||||
0.02918 0.50977
|
||||
0.01015 0.5037
|
||||
0.00662 0.50049
|
||||
0.02259 0.49683
|
||||
0.02138 0.49721
|
||||
0.01989 0.50583
|
||||
0.01719 0.50658
|
||||
0.02366 0.49547
|
||||
0.02261 0.50569
|
||||
0.02416 0.49364
|
||||
0.025 0.50638
|
||||
0.02445 0.4921
|
||||
0.0269 0.50765
|
||||
0.02483 0.4868
|
||||
0.02822 0.5088
|
||||
0.02264 0.48902
|
||||
0.00662 0.50049
|
||||
0.02918 0.50977
|
||||
0.02106 0.4916
|
||||
0.01015 0.5037
|
||||
0.02094 0.49498
|
||||
0.01305 0.50756
|
||||
0.02069 0.49649
|
||||
0.01473 0.50737
|
||||
0.01719 0.50658
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
1 3 2 -1
|
||||
2 3 4 -1
|
||||
3 5 4 -1
|
||||
4 5 6 -1
|
||||
5 7 6 -1
|
||||
6 7 8 -1
|
||||
7 9 8 -1
|
||||
10 11 12 -1
|
||||
11 13 12 -1
|
||||
12 13 14 -1
|
||||
13 15 14 -1
|
||||
14 15 16 -1
|
||||
15 17 16 -1
|
||||
16 17 18 -1
|
||||
17 19 20 -1
|
||||
21 22 23 -1
|
||||
22 24 23 -1
|
||||
25 21 26 -1
|
||||
21 23 26 -1
|
||||
27 25 28 -1
|
||||
25 26 28 -1
|
||||
29 27 30 -1
|
||||
27 28 30 -1
|
||||
31 29 32 -1
|
||||
29 30 32 -1
|
||||
33 31 34 -1
|
||||
31 32 35 -1
|
||||
36 33 37 -1
|
||||
33 34 37 -1
|
||||
38 36 39 -1
|
||||
36 37 39 -1
|
||||
40 38 41 -1
|
||||
38 39 41 -1
|
||||
22 40 42 -1
|
||||
40 41 42 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
52
simulation/atlas/protos/LLglutSolid.proto
Normal file
52
simulation/atlas/protos/LLglutSolid.proto
Normal file
|
@ -0,0 +1,52 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LLglutSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LLglutMesh {
|
||||
}
|
||||
]
|
||||
name "LLglut"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation 0.049968 0.022488 -0.0501165
|
||||
rotation 1.0 0.0 0.0 3.14079632679
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.02009687
|
||||
height 0.060306
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation 0 0 0
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.02
|
||||
height 0.12
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 0.69
|
||||
centerOfMass 0.0133341 0.0170484 -0.0312052
|
||||
inertiaMatrix [0.000691326 0.00126856 0.00106487, -2.24344e-05 2.50508e-06 0.000137862 ]
|
||||
}
|
||||
}
|
||||
}
|
3901
simulation/atlas/protos/LLlegMesh.proto
Normal file
3901
simulation/atlas/protos/LLlegMesh.proto
Normal file
File diff suppressed because it is too large
Load Diff
41
simulation/atlas/protos/LLlegSolid.proto
Normal file
41
simulation/atlas/protos/LLlegSolid.proto
Normal file
|
@ -0,0 +1,41 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LLlegSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LLlegMesh {
|
||||
}
|
||||
]
|
||||
name "LLleg"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation -0.00345 0.00295 -0.1913
|
||||
rotation 0.0 1.0 0.0 0.0
|
||||
children [
|
||||
Box {
|
||||
size 0.1465 0.1205 0.476
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 4.367
|
||||
centerOfMass 0.001 0 -0.187
|
||||
inertiaMatrix [0.077 0.076 0.01, 0 -0.003 0 ]
|
||||
}
|
||||
}
|
||||
}
|
796
simulation/atlas/protos/LScapMesh.proto
Normal file
796
simulation/atlas/protos/LScapMesh.proto
Normal file
|
@ -0,0 +1,796 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_scap.dae
|
||||
|
||||
PROTO LScapMesh [
|
||||
]
|
||||
{
|
||||
Group {
|
||||
children [
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
-0.095381 -0.024342 -0.039857
|
||||
-0.095381 0.04334 -0.048776
|
||||
-0.095381 -0.008171 -0.048709
|
||||
-0.095381 0.04334 -0.000627
|
||||
-0.095381 -0.036513 -0.026506
|
||||
-0.095381 0.04334 0.047523
|
||||
-0.095381 -0.043039 -0.00966
|
||||
-0.095381 -0.008171 0.047452
|
||||
-0.095381 -0.043039 -0.000628
|
||||
-0.095381 -0.024342 0.038601
|
||||
-0.095381 -0.043039 0.008405
|
||||
-0.095381 -0.036513 0.025251
|
||||
-0.095381 0.04334 -0.000627
|
||||
-0.047356 0.063712 0.047523
|
||||
-0.047356 0.063712 -0.000627
|
||||
-0.047356 0.063712 -0.048776
|
||||
0.091625 -0.043039 0.008405
|
||||
0.091625 -0.024342 0.038601
|
||||
0.091625 -0.036513 0.025251
|
||||
0.091625 -0.043039 -0.000628
|
||||
0.091625 -0.008171 0.047452
|
||||
0.091625 0.04334 -0.000627
|
||||
0.091625 0.04334 0.047523
|
||||
0.091625 -0.008171 -0.048709
|
||||
0.091625 -0.036513 -0.026506
|
||||
0.091625 -0.024342 -0.039857
|
||||
0.091625 0.04334 -0.048776
|
||||
0.091625 -0.043039 -0.00966
|
||||
0.091625 0.04334 -0.000627
|
||||
0.091625 -0.043039 -0.000628
|
||||
0.0436 0.063712 -0.000627
|
||||
0.091625 0.04334 -0.000627
|
||||
0.0436 0.063712 -0.000627
|
||||
0.091625 0.04334 -0.000627
|
||||
0.0436 0.063712 0.047523
|
||||
0.0436 0.063712 -0.048776
|
||||
-0.030371 0.187267 0.030013
|
||||
-0.030371 0.187267 -0.031266
|
||||
-0.043719 0.187267 -0.000627
|
||||
-0.001878 0.187267 -0.042467
|
||||
-0.001878 0.187267 0.041214
|
||||
0.026615 0.187267 -0.031266
|
||||
0.026615 0.187267 0.030013
|
||||
0.039963 0.187267 -0.000627
|
||||
0.039963 0.063711 -0.000627
|
||||
0.026615 0.063711 0.030013
|
||||
-0.001878 0.063712 0.047523
|
||||
-0.001878 0.063711 0.041214
|
||||
-0.030371 0.063711 0.030013
|
||||
-0.043719 0.063711 -0.000627
|
||||
-0.030371 0.063711 -0.031266
|
||||
-0.001878 0.063712 -0.048776
|
||||
-0.001878 0.063711 -0.042467
|
||||
0.026615 0.063711 -0.031266
|
||||
0.039963 0.063711 -0.000627
|
||||
-0.043719 0.063711 -0.000627
|
||||
-0.030371 0.187267 0.030013
|
||||
-0.043719 0.187267 -0.000627
|
||||
-0.030371 0.063711 -0.031266
|
||||
-0.030371 0.187267 -0.031266
|
||||
-0.001878 0.063711 -0.042467
|
||||
-0.001878 0.187267 -0.042467
|
||||
0.026615 0.063711 -0.031266
|
||||
0.026615 0.187267 -0.031266
|
||||
0.039963 0.063711 -0.000627
|
||||
0.039963 0.187267 -0.000627
|
||||
0.026615 0.063711 0.030013
|
||||
0.026615 0.187267 0.030013
|
||||
0.039963 0.063711 -0.000627
|
||||
-0.001878 0.063711 0.041214
|
||||
-0.001878 0.187267 0.041214
|
||||
-0.081444 -0.024342 0.038601
|
||||
-0.081444 -0.036513 0.025251
|
||||
-0.081444 -0.043039 0.008405
|
||||
-0.083762 0.035643 0.047523
|
||||
-0.081444 -0.008171 0.047452
|
||||
-0.04458 0.050054 -0.000627
|
||||
-0.083762 0.035643 0.047523
|
||||
-0.08376 0.035646 -0.000627
|
||||
-0.044579 0.050054 0.047523
|
||||
-0.083762 0.035643 -0.048776
|
||||
-0.044579 0.050054 -0.048776
|
||||
0.077688 -0.008171 0.047452
|
||||
0.080006 0.035643 0.047523
|
||||
0.077688 -0.024342 0.038601
|
||||
0.040824 0.050054 -0.000627
|
||||
0.080006 0.035643 -0.048776
|
||||
0.080004 0.035646 -0.000627
|
||||
0.040823 0.050054 -0.048776
|
||||
0.080006 0.035643 0.047523
|
||||
0.040823 0.050054 0.047523
|
||||
-0.02286 0.178483 0.022224
|
||||
0.019104 0.178483 0.022224
|
||||
-0.001878 0.178441 0.030428
|
||||
0.029109 0.178524 -0.000627
|
||||
-0.032865 0.178524 -0.000627
|
||||
0.019104 0.178483 -0.023477
|
||||
-0.02286 0.178483 -0.023477
|
||||
-0.001878 0.178441 -0.031681
|
||||
-0.024621 0.052503 0.02405
|
||||
-0.035527 0.052436 -0.000627
|
||||
-0.001878 0.052569 -0.034095
|
||||
-0.024621 0.052503 -0.025303
|
||||
-0.001878 0.049775 -0.048778
|
||||
0.020865 0.052503 -0.025303
|
||||
0.040824 0.050054 -0.000627
|
||||
0.031771 0.052436 -0.000627
|
||||
-0.001878 0.052569 0.032842
|
||||
0.020865 0.052503 0.02405
|
||||
0.040823 0.050054 0.047523
|
||||
-0.001878 0.049775 0.047524
|
||||
-0.001878 0.052569 0.032842
|
||||
-0.024621 0.052503 0.02405
|
||||
-0.044579 0.050054 0.047523
|
||||
-0.081444 -0.024342 -0.039857
|
||||
-0.081444 -0.008171 -0.048709
|
||||
-0.081444 -0.043039 -0.00966
|
||||
-0.081444 -0.036513 -0.026506
|
||||
-0.081444 -0.024342 -0.039857
|
||||
-0.081444 -0.043039 -0.000628
|
||||
-0.081444 -0.024342 0.038601
|
||||
-0.081444 -0.043039 -0.000628
|
||||
0.077688 -0.008171 -0.048709
|
||||
0.077688 -0.024342 -0.039857
|
||||
0.080006 0.035643 0.047523
|
||||
0.077688 -0.024342 -0.039857
|
||||
0.077688 -0.024342 0.038601
|
||||
0.077688 -0.036513 -0.026506
|
||||
0.077688 -0.036513 0.025251
|
||||
0.077688 -0.043039 -0.000628
|
||||
0.077688 -0.043039 0.008405
|
||||
0.077688 -0.043039 -0.00966
|
||||
-0.04458 0.050054 -0.000627
|
||||
-0.024621 0.052503 -0.025303
|
||||
-0.001878 0.178441 0.030428
|
||||
0.0436 0.063712 0.047523
|
||||
-0.001878 0.049775 0.047524
|
||||
0.080006 0.035643 0.047523
|
||||
0.091625 -0.008171 0.047452
|
||||
0.091625 0.04334 0.047523
|
||||
0.077688 -0.008171 0.047452
|
||||
-0.001878 0.063712 0.047523
|
||||
-0.047356 0.063712 0.047523
|
||||
-0.095381 0.04334 0.047523
|
||||
-0.081444 -0.008171 0.047452
|
||||
-0.083762 0.035643 0.047523
|
||||
-0.095381 -0.008171 0.047452
|
||||
-0.044579 0.050054 0.047523
|
||||
-0.081444 -0.024342 0.038601
|
||||
-0.095381 -0.024342 0.038601
|
||||
-0.081444 -0.036513 0.025251
|
||||
-0.095381 -0.036513 0.025251
|
||||
-0.081444 -0.043039 0.008405
|
||||
-0.095381 -0.043039 0.008405
|
||||
0.091625 -0.043039 0.008405
|
||||
0.077688 -0.036513 0.025251
|
||||
0.077688 -0.043039 0.008405
|
||||
0.091625 -0.036513 0.025251
|
||||
0.077688 -0.024342 0.038601
|
||||
0.091625 -0.024342 0.038601
|
||||
0.077688 -0.043039 -0.000628
|
||||
0.091625 -0.043039 -0.00966
|
||||
0.091625 -0.043039 -0.000628
|
||||
0.077688 -0.043039 -0.00966
|
||||
0.077688 -0.043039 -0.000628
|
||||
0.091625 -0.043039 -0.000628
|
||||
-0.095381 -0.043039 -0.00966
|
||||
-0.081444 -0.036513 -0.026506
|
||||
-0.081444 -0.043039 -0.00966
|
||||
-0.095381 -0.036513 -0.026506
|
||||
-0.081444 -0.024342 -0.039857
|
||||
-0.095381 -0.024342 -0.039857
|
||||
-0.081444 -0.008171 -0.048709
|
||||
-0.095381 -0.008171 -0.048709
|
||||
-0.095381 -0.043039 -0.000628
|
||||
-0.081444 -0.043039 -0.000628
|
||||
-0.001878 0.063712 -0.048776
|
||||
-0.001878 0.049775 -0.048778
|
||||
-0.044579 0.050054 -0.048776
|
||||
-0.083762 0.035643 -0.048776
|
||||
-0.095381 0.04334 -0.048776
|
||||
0.091625 0.04334 -0.048776
|
||||
0.077688 -0.008171 -0.048709
|
||||
0.080006 0.035643 -0.048776
|
||||
0.091625 -0.008171 -0.048709
|
||||
0.0436 0.063712 -0.048776
|
||||
0.040823 0.050054 -0.048776
|
||||
-0.047356 0.063712 -0.048776
|
||||
0.077688 -0.024342 -0.039857
|
||||
0.091625 -0.024342 -0.039857
|
||||
0.077688 -0.036513 -0.026506
|
||||
0.091625 -0.036513 -0.026506
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
4 3 0 -1
|
||||
4 5 3 -1
|
||||
6 5 4 -1
|
||||
6 7 5 -1
|
||||
8 7 6 -1
|
||||
8 9 7 -1
|
||||
10 9 8 -1
|
||||
10 11 9 -1
|
||||
12 13 14 -1
|
||||
12 5 13 -1
|
||||
12 15 1 -1
|
||||
12 14 15 -1
|
||||
16 17 18 -1
|
||||
19 17 16 -1
|
||||
19 20 17 -1
|
||||
21 20 19 -1
|
||||
21 22 20 -1
|
||||
23 24 25 -1
|
||||
26 24 23 -1
|
||||
26 27 24 -1
|
||||
26 28 27 -1
|
||||
27 28 29 -1
|
||||
26 30 31 -1
|
||||
32 22 33 -1
|
||||
32 34 22 -1
|
||||
30 26 35 -1
|
||||
36 37 38 -1
|
||||
36 39 37 -1
|
||||
40 39 36 -1
|
||||
40 41 39 -1
|
||||
42 41 40 -1
|
||||
42 43 41 -1
|
||||
44 45 32 -1
|
||||
34 32 45 -1
|
||||
46 45 47 -1
|
||||
46 34 45 -1
|
||||
13 46 48 -1
|
||||
48 46 47 -1
|
||||
14 48 49 -1
|
||||
14 13 48 -1
|
||||
15 14 50 -1
|
||||
50 14 49 -1
|
||||
51 50 52 -1
|
||||
51 15 50 -1
|
||||
35 53 30 -1
|
||||
30 53 54 -1
|
||||
53 51 52 -1
|
||||
53 35 51 -1
|
||||
55 56 57 -1
|
||||
55 48 56 -1
|
||||
58 57 59 -1
|
||||
58 55 57 -1
|
||||
60 59 61 -1
|
||||
60 58 59 -1
|
||||
62 61 63 -1
|
||||
62 60 61 -1
|
||||
64 63 65 -1
|
||||
64 62 63 -1
|
||||
66 65 67 -1
|
||||
66 68 65 -1
|
||||
69 67 70 -1
|
||||
69 66 67 -1
|
||||
48 70 56 -1
|
||||
48 69 70 -1
|
||||
71 72 73 -1
|
||||
74 75 71 -1
|
||||
76 77 78 -1
|
||||
76 79 77 -1
|
||||
76 80 81 -1
|
||||
76 78 80 -1
|
||||
82 83 84 -1
|
||||
85 86 87 -1
|
||||
85 88 86 -1
|
||||
85 89 90 -1
|
||||
85 87 89 -1
|
||||
91 92 93 -1
|
||||
91 94 92 -1
|
||||
95 94 91 -1
|
||||
95 96 94 -1
|
||||
97 96 95 -1
|
||||
97 98 96 -1
|
||||
99 79 76 -1
|
||||
76 100 99 -1
|
||||
101 102 81 -1
|
||||
81 103 101 -1
|
||||
104 101 103 -1
|
||||
103 88 104 -1
|
||||
104 88 85 -1
|
||||
105 106 104 -1
|
||||
107 108 90 -1
|
||||
109 110 111 -1
|
||||
112 111 110 -1
|
||||
110 113 112 -1
|
||||
114 115 80 -1
|
||||
116 117 118 -1
|
||||
118 119 116 -1
|
||||
114 80 119 -1
|
||||
80 120 119 -1
|
||||
121 71 73 -1
|
||||
78 120 80 -1
|
||||
78 77 120 -1
|
||||
122 87 86 -1
|
||||
122 89 87 -1
|
||||
123 124 122 -1
|
||||
125 126 89 -1
|
||||
127 126 123 -1
|
||||
127 128 126 -1
|
||||
129 128 127 -1
|
||||
129 130 128 -1
|
||||
129 127 131 -1
|
||||
102 100 132 -1
|
||||
76 81 133 -1
|
||||
108 106 85 -1
|
||||
85 90 108 -1
|
||||
100 91 99 -1
|
||||
100 95 91 -1
|
||||
102 95 100 -1
|
||||
102 97 95 -1
|
||||
101 97 102 -1
|
||||
101 98 97 -1
|
||||
104 98 101 -1
|
||||
104 96 98 -1
|
||||
106 96 104 -1
|
||||
106 94 96 -1
|
||||
108 94 106 -1
|
||||
108 92 94 -1
|
||||
107 92 108 -1
|
||||
107 93 92 -1
|
||||
112 134 111 -1
|
||||
99 91 93 -1
|
||||
135 136 109 -1
|
||||
137 138 139 -1
|
||||
137 140 138 -1
|
||||
141 142 143 -1
|
||||
143 144 145 -1
|
||||
143 146 144 -1
|
||||
143 145 147 -1
|
||||
135 141 147 -1
|
||||
147 141 143 -1
|
||||
109 139 135 -1
|
||||
109 137 139 -1
|
||||
136 135 147 -1
|
||||
146 148 144 -1
|
||||
146 149 148 -1
|
||||
149 150 148 -1
|
||||
149 151 150 -1
|
||||
151 152 150 -1
|
||||
151 153 152 -1
|
||||
154 155 156 -1
|
||||
154 157 155 -1
|
||||
157 158 155 -1
|
||||
157 159 158 -1
|
||||
160 161 162 -1
|
||||
160 163 161 -1
|
||||
164 154 156 -1
|
||||
164 165 154 -1
|
||||
159 140 158 -1
|
||||
159 138 140 -1
|
||||
166 167 168 -1
|
||||
166 169 167 -1
|
||||
169 170 167 -1
|
||||
169 171 170 -1
|
||||
171 172 170 -1
|
||||
171 173 172 -1
|
||||
152 174 175 -1
|
||||
174 168 175 -1
|
||||
174 166 168 -1
|
||||
174 152 153 -1
|
||||
176 177 178 -1
|
||||
179 173 180 -1
|
||||
179 172 173 -1
|
||||
181 182 183 -1
|
||||
181 184 182 -1
|
||||
185 183 186 -1
|
||||
185 181 183 -1
|
||||
178 180 187 -1
|
||||
178 179 180 -1
|
||||
186 176 185 -1
|
||||
177 176 186 -1
|
||||
178 187 176 -1
|
||||
184 188 182 -1
|
||||
184 189 188 -1
|
||||
189 190 188 -1
|
||||
189 191 190 -1
|
||||
191 163 190 -1
|
||||
191 161 163 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.42372 0.48181
|
||||
0.43248 0.49896
|
||||
0.42724 0.48632
|
||||
0.41618 0.50254
|
||||
0.42135 0.47662
|
||||
0.40073 0.50082
|
||||
0.41849 0.47269
|
||||
0.40191 0.4827
|
||||
0.41621 0.47225
|
||||
0.40358 0.47769
|
||||
0.41358 0.47232
|
||||
0.40817 0.47424
|
||||
0.41618 0.50254
|
||||
0.39952 0.51866
|
||||
0.4207 0.51893
|
||||
0.44121 0.51343
|
||||
0.34636 0.58159
|
||||
0.34819 0.56955
|
||||
0.34614 0.57522
|
||||
0.34757 0.58464
|
||||
0.35247 0.56525
|
||||
0.3755 0.57053
|
||||
0.36591 0.55602
|
||||
0.49627 0.55539
|
||||
0.50515 0.56284
|
||||
0.50104 0.55868
|
||||
0.48175 0.55099
|
||||
0.50801 0.56769
|
||||
0.47833 0.56636
|
||||
0.5089 0.57029
|
||||
0.46393 0.55405
|
||||
0.47833 0.56636
|
||||
0.38762 0.55895
|
||||
0.3755 0.57053
|
||||
0.38124 0.54554
|
||||
0.46949 0.53849
|
||||
0.41882 0.54808
|
||||
0.43175 0.5493
|
||||
0.42571 0.54505
|
||||
0.43333 0.55698
|
||||
0.41649 0.55596
|
||||
0.4309 0.56569
|
||||
0.41901 0.56518
|
||||
0.42517 0.57395
|
||||
0.38816 0.55826
|
||||
0.38889 0.54592
|
||||
0.39125 0.53239
|
||||
0.39357 0.53388
|
||||
0.40464 0.52501
|
||||
0.42096 0.52002
|
||||
0.4387 0.52138
|
||||
0.45479 0.52639
|
||||
0.45267 0.52841
|
||||
0.46054 0.54023
|
||||
0.46343 0.55327
|
||||
0.42096 0.52002
|
||||
0.41882 0.54808
|
||||
0.42571 0.54505
|
||||
0.4387 0.52138
|
||||
0.43175 0.5493
|
||||
0.45267 0.52841
|
||||
0.43333 0.55698
|
||||
0.46054 0.54023
|
||||
0.4309 0.56569
|
||||
0.46343 0.55327
|
||||
0.42517 0.57395
|
||||
0.38889 0.54592
|
||||
0.41901 0.56518
|
||||
0.38816 0.55826
|
||||
0.39357 0.53388
|
||||
0.41649 0.55596
|
||||
0.39816 0.47363
|
||||
0.40621 0.47163
|
||||
0.414 0.46842
|
||||
0.39692 0.50005
|
||||
0.3988 0.48188
|
||||
0.45547 0.49439
|
||||
0.45414 0.47036
|
||||
0.44551 0.48434
|
||||
0.4624 0.47717
|
||||
0.43661 0.49749
|
||||
0.44597 0.50977
|
||||
0.35 0.56301
|
||||
0.36383 0.55249
|
||||
0.34339 0.5656
|
||||
0.48911 0.52558
|
||||
0.48415 0.54708
|
||||
0.49871 0.53653
|
||||
0.47308 0.53469
|
||||
0.5132 0.52989
|
||||
0.50629 0.52141
|
||||
0.49219 0.48036
|
||||
0.49736 0.48339
|
||||
0.49848 0.47693
|
||||
0.49455 0.49068
|
||||
0.48594 0.48564
|
||||
0.48989 0.49559
|
||||
0.4834 0.49179
|
||||
0.48537 0.49574
|
||||
0.46124 0.48557
|
||||
0.45815 0.49555
|
||||
0.46482 0.51713
|
||||
0.45866 0.50741
|
||||
0.45964 0.52194
|
||||
0.47542 0.52257
|
||||
0.48911 0.52558
|
||||
0.4882 0.52268
|
||||
0.50757 0.51552
|
||||
0.49931 0.51888
|
||||
0.37722 0.5423
|
||||
0.38591 0.52959
|
||||
0.38131 0.52671
|
||||
0.38374 0.5184
|
||||
0.39449 0.51701
|
||||
0.42596 0.47925
|
||||
0.42839 0.48485
|
||||
0.42382 0.46809
|
||||
0.42414 0.47392
|
||||
0.42596 0.47925
|
||||
0.42583 0.4652
|
||||
0.43824 0.45951
|
||||
0.41762 0.46632
|
||||
0.4965 0.55244
|
||||
0.50195 0.55611
|
||||
0.5132 0.52989
|
||||
0.50195 0.55611
|
||||
0.52326 0.54906
|
||||
0.50667 0.55943
|
||||
0.52088 0.55509
|
||||
0.51395 0.56054
|
||||
0.51672 0.55936
|
||||
0.51125 0.56118
|
||||
0.45547 0.49439
|
||||
0.45866 0.50741
|
||||
0.33852 0.51297
|
||||
0.38124 0.54554
|
||||
0.38591 0.52959
|
||||
0.36383 0.55249
|
||||
0.35247 0.56525
|
||||
0.36591 0.55602
|
||||
0.35 0.56301
|
||||
0.39125 0.53239
|
||||
0.39952 0.51866
|
||||
0.40073 0.50082
|
||||
0.3988 0.48188
|
||||
0.39692 0.50005
|
||||
0.40191 0.4827
|
||||
0.39449 0.51701
|
||||
0.39816 0.47363
|
||||
0.40358 0.47769
|
||||
0.40621 0.47163
|
||||
0.40817 0.47424
|
||||
0.414 0.46842
|
||||
0.41358 0.47232
|
||||
0.34636 0.58159
|
||||
0.34142 0.57412
|
||||
0.34158 0.58159
|
||||
0.34614 0.57522
|
||||
0.34339 0.5656
|
||||
0.34819 0.56955
|
||||
0.51395 0.56054
|
||||
0.50801 0.56769
|
||||
0.5089 0.57029
|
||||
0.51125 0.56118
|
||||
0.34211 0.58509
|
||||
0.34757 0.58464
|
||||
0.41849 0.47269
|
||||
0.42414 0.47392
|
||||
0.42382 0.46809
|
||||
0.42135 0.47662
|
||||
0.42596 0.47925
|
||||
0.42372 0.48181
|
||||
0.42839 0.48485
|
||||
0.42724 0.48632
|
||||
0.41621 0.47225
|
||||
0.41762 0.46632
|
||||
0.45479 0.52639
|
||||
0.45964 0.52194
|
||||
0.44597 0.50977
|
||||
0.43661 0.49749
|
||||
0.43248 0.49896
|
||||
0.48175 0.55099
|
||||
0.4965 0.55244
|
||||
0.48415 0.54708
|
||||
0.49627 0.55539
|
||||
0.46949 0.53849
|
||||
0.47308 0.53469
|
||||
0.44121 0.51343
|
||||
0.50195 0.55611
|
||||
0.50104 0.55868
|
||||
0.50667 0.55943
|
||||
0.50515 0.56284
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
0 3 1 -1
|
||||
4 3 0 -1
|
||||
4 5 3 -1
|
||||
6 5 4 -1
|
||||
6 7 5 -1
|
||||
8 7 6 -1
|
||||
8 9 7 -1
|
||||
10 9 8 -1
|
||||
10 11 9 -1
|
||||
12 13 14 -1
|
||||
12 5 13 -1
|
||||
12 15 1 -1
|
||||
12 14 15 -1
|
||||
16 17 18 -1
|
||||
19 17 16 -1
|
||||
19 20 17 -1
|
||||
21 20 19 -1
|
||||
21 22 20 -1
|
||||
23 24 25 -1
|
||||
26 24 23 -1
|
||||
26 27 24 -1
|
||||
26 28 27 -1
|
||||
27 28 29 -1
|
||||
26 30 31 -1
|
||||
32 22 33 -1
|
||||
32 34 22 -1
|
||||
30 26 35 -1
|
||||
36 37 38 -1
|
||||
36 39 37 -1
|
||||
40 39 36 -1
|
||||
40 41 39 -1
|
||||
42 41 40 -1
|
||||
42 43 41 -1
|
||||
44 45 32 -1
|
||||
34 32 45 -1
|
||||
46 45 47 -1
|
||||
46 34 45 -1
|
||||
13 46 48 -1
|
||||
48 46 47 -1
|
||||
14 48 49 -1
|
||||
14 13 48 -1
|
||||
15 14 50 -1
|
||||
50 14 49 -1
|
||||
51 50 52 -1
|
||||
51 15 50 -1
|
||||
35 53 30 -1
|
||||
30 53 54 -1
|
||||
53 51 52 -1
|
||||
53 35 51 -1
|
||||
55 56 57 -1
|
||||
55 48 56 -1
|
||||
58 57 59 -1
|
||||
58 55 57 -1
|
||||
60 59 61 -1
|
||||
60 58 59 -1
|
||||
62 61 63 -1
|
||||
62 60 61 -1
|
||||
64 63 65 -1
|
||||
64 62 63 -1
|
||||
66 65 67 -1
|
||||
66 68 65 -1
|
||||
69 67 70 -1
|
||||
69 66 67 -1
|
||||
48 70 56 -1
|
||||
48 69 70 -1
|
||||
71 72 73 -1
|
||||
74 75 71 -1
|
||||
76 77 78 -1
|
||||
76 79 77 -1
|
||||
76 80 81 -1
|
||||
76 78 80 -1
|
||||
82 83 84 -1
|
||||
85 86 87 -1
|
||||
85 88 86 -1
|
||||
85 89 90 -1
|
||||
85 87 89 -1
|
||||
91 92 93 -1
|
||||
91 94 92 -1
|
||||
95 94 91 -1
|
||||
95 96 94 -1
|
||||
97 96 95 -1
|
||||
97 98 96 -1
|
||||
99 79 76 -1
|
||||
76 100 99 -1
|
||||
101 102 81 -1
|
||||
81 103 101 -1
|
||||
104 101 103 -1
|
||||
103 88 104 -1
|
||||
104 88 85 -1
|
||||
105 106 104 -1
|
||||
107 108 90 -1
|
||||
109 110 111 -1
|
||||
112 111 110 -1
|
||||
110 113 112 -1
|
||||
114 115 80 -1
|
||||
116 117 118 -1
|
||||
118 119 116 -1
|
||||
114 80 119 -1
|
||||
80 120 119 -1
|
||||
121 71 73 -1
|
||||
78 120 80 -1
|
||||
78 77 120 -1
|
||||
122 87 86 -1
|
||||
122 89 87 -1
|
||||
123 124 122 -1
|
||||
125 126 89 -1
|
||||
127 126 123 -1
|
||||
127 128 126 -1
|
||||
129 128 127 -1
|
||||
129 130 128 -1
|
||||
129 127 131 -1
|
||||
102 100 132 -1
|
||||
76 81 133 -1
|
||||
108 106 85 -1
|
||||
85 90 108 -1
|
||||
100 91 99 -1
|
||||
100 95 91 -1
|
||||
102 95 100 -1
|
||||
102 97 95 -1
|
||||
101 97 102 -1
|
||||
101 98 97 -1
|
||||
104 98 101 -1
|
||||
104 96 98 -1
|
||||
106 96 104 -1
|
||||
106 94 96 -1
|
||||
108 94 106 -1
|
||||
108 92 94 -1
|
||||
107 92 108 -1
|
||||
107 93 92 -1
|
||||
112 134 111 -1
|
||||
99 91 93 -1
|
||||
135 136 109 -1
|
||||
137 138 139 -1
|
||||
137 140 138 -1
|
||||
141 142 143 -1
|
||||
143 144 145 -1
|
||||
143 146 144 -1
|
||||
143 145 147 -1
|
||||
135 141 147 -1
|
||||
147 141 143 -1
|
||||
109 139 135 -1
|
||||
109 137 139 -1
|
||||
136 135 147 -1
|
||||
146 148 144 -1
|
||||
146 149 148 -1
|
||||
149 150 148 -1
|
||||
149 151 150 -1
|
||||
151 152 150 -1
|
||||
151 153 152 -1
|
||||
154 155 156 -1
|
||||
154 157 155 -1
|
||||
157 158 155 -1
|
||||
157 159 158 -1
|
||||
160 161 162 -1
|
||||
160 163 161 -1
|
||||
164 154 156 -1
|
||||
164 165 154 -1
|
||||
159 140 158 -1
|
||||
159 138 140 -1
|
||||
166 167 168 -1
|
||||
166 169 167 -1
|
||||
169 170 167 -1
|
||||
169 171 170 -1
|
||||
171 172 170 -1
|
||||
171 173 172 -1
|
||||
152 174 175 -1
|
||||
174 168 175 -1
|
||||
174 166 168 -1
|
||||
174 152 153 -1
|
||||
176 177 178 -1
|
||||
179 173 180 -1
|
||||
179 172 173 -1
|
||||
181 182 183 -1
|
||||
181 184 182 -1
|
||||
185 183 186 -1
|
||||
185 181 183 -1
|
||||
178 180 187 -1
|
||||
178 179 180 -1
|
||||
186 176 185 -1
|
||||
177 176 186 -1
|
||||
178 187 176 -1
|
||||
184 188 182 -1
|
||||
184 189 188 -1
|
||||
189 190 188 -1
|
||||
189 191 190 -1
|
||||
191 163 190 -1
|
||||
191 161 163 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
62
simulation/atlas/protos/LScapSolid.proto
Normal file
62
simulation/atlas/protos/LScapSolid.proto
Normal file
|
@ -0,0 +1,62 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LScapSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LScapMesh {
|
||||
}
|
||||
]
|
||||
name "LScap"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation 0 0.118521 0
|
||||
rotation 1.0 0.0 0.0 3.14079632679
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.0418405
|
||||
height 0.137492
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation -0.0884125 0 0
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.048709
|
||||
height 0.013937
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation 0.0847565 0 0
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.048709
|
||||
height 0.013737
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 2.707
|
||||
centerOfMass -0.002 0.108 0
|
||||
inertiaMatrix [0.01 0.005 0.013, 0 0 0 ]
|
||||
}
|
||||
}
|
||||
}
|
572
simulation/atlas/protos/LTalusMesh.proto
Normal file
572
simulation/atlas/protos/LTalusMesh.proto
Normal file
|
@ -0,0 +1,572 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_talus.dae
|
||||
|
||||
PROTO LTalusMesh [
|
||||
]
|
||||
{
|
||||
Group {
|
||||
children [
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
0.007057 0.00973 -0.006592
|
||||
0.000257 -3.2e-05 -0.009425
|
||||
4.5e-05 -3.2e-05 -0.009496
|
||||
4.5e-05 0.00973 0.010339
|
||||
4.5e-05 -3.2e-05 0.010341
|
||||
0.000257 -3.2e-05 0.010269
|
||||
0.007059 -0.009733 0.007438
|
||||
0.007061 -0.010059 0.007441
|
||||
0.009956 -0.010051 0.000423
|
||||
0.009961 -0.009733 0.000423
|
||||
0.007055 0.01 0.007434
|
||||
0.007057 0.00973 0.007436
|
||||
0.009954 0.01 0.000423
|
||||
0.009959 0.00973 0.000423
|
||||
0.007059 -0.009733 -0.006594
|
||||
0.007061 -0.010059 -0.006596
|
||||
0.009959 0.00973 0.000423
|
||||
0.007057 0.00973 -0.006592
|
||||
0.009954 0.01 0.000423
|
||||
0.007055 0.01 -0.00659
|
||||
4.5e-05 -0.009733 -0.009498
|
||||
0.007059 -0.009733 -0.006594
|
||||
4.5e-05 -0.010059 -0.009504
|
||||
4.5e-05 0.01 -0.009489
|
||||
4.5e-05 0.00973 -0.009494
|
||||
0.007055 0.01 -0.00659
|
||||
4.5e-05 -0.009733 0.010343
|
||||
0.007061 -0.010059 0.007441
|
||||
0.007059 -0.009733 0.007438
|
||||
4.5e-05 -0.010059 0.010348
|
||||
4.5e-05 0.01 0.010333
|
||||
0.007057 0.00973 0.007436
|
||||
0.007055 0.01 0.007434
|
||||
0.007059 -0.009733 0.007438
|
||||
0.007025 -0.007355 0.007453
|
||||
0.000572 -3.2e-05 0.010181
|
||||
0.007024 0.007293 0.007452
|
||||
0.009942 0.009984 0.000423
|
||||
0.009959 0.00973 0.000423
|
||||
0.007024 0.007293 0.007452
|
||||
0.009942 0.009984 0.000423
|
||||
0.007024 0.007293 -0.006608
|
||||
0.007024 0.007293 -0.006608
|
||||
0.000257 -3.2e-05 -0.009425
|
||||
0.000572 -3.2e-05 -0.009336
|
||||
0.007025 -0.007355 -0.006609
|
||||
0.009956 -0.010051 0.000423
|
||||
0.009961 -0.009733 0.000423
|
||||
0.007059 -0.009733 -0.006594
|
||||
0.009956 -0.010051 0.000423
|
||||
0.007025 -0.007355 0.007453
|
||||
0.014861 -0.007355 0.007453
|
||||
0.007025 -0.007355 0.007453
|
||||
0.014861 -3.2e-05 0.010181
|
||||
0.014861 0.007293 0.007452
|
||||
0.014861 0.00998 0.000423
|
||||
0.009942 0.009984 0.000423
|
||||
0.014861 0.007293 -0.006608
|
||||
0.014861 -3.2e-05 -0.009336
|
||||
0.014861 -0.007355 -0.006609
|
||||
0.009956 -0.010051 0.000423
|
||||
0.014861 -0.010042 0.000423
|
||||
0.014861 0.00998 0.000423
|
||||
0.014861 -3.2e-05 -0.009336
|
||||
0.014861 0.007293 -0.006608
|
||||
0.014861 0.007293 0.007452
|
||||
0.014861 -0.010042 0.000423
|
||||
0.014861 -0.007355 0.007453
|
||||
-0.006967 0.00973 0.007436
|
||||
-0.000167 -3.2e-05 0.010269
|
||||
-0.000167 -3.2e-05 -0.009425
|
||||
-0.009861 -0.010048 0.000423
|
||||
-0.009871 -0.009733 0.000423
|
||||
-0.006971 -0.010059 -0.006596
|
||||
-0.006969 -0.009733 -0.006594
|
||||
-0.006965 0.01 -0.00659
|
||||
-0.006967 0.00973 -0.006592
|
||||
-0.009864 0.01 0.000423
|
||||
-0.009869 0.00973 0.000423
|
||||
-0.006969 -0.009733 0.007438
|
||||
-0.006971 -0.010059 0.007441
|
||||
-0.006971 -0.010059 0.007441
|
||||
-0.006967 0.00973 0.007436
|
||||
-0.006965 0.01 0.007434
|
||||
-0.006971 -0.010059 0.007441
|
||||
-0.006969 -0.009733 0.007438
|
||||
-0.006965 0.01 0.007434
|
||||
-0.006935 -0.007355 -0.006609
|
||||
-0.000482 -3.2e-05 -0.009336
|
||||
-0.006934 0.007293 -0.006608
|
||||
-0.009852 0.009984 0.000423
|
||||
-0.009869 0.00973 0.000423
|
||||
-0.006967 0.00973 -0.006592
|
||||
-0.009852 0.009984 0.000423
|
||||
-0.006934 0.007293 0.007452
|
||||
-0.006934 0.007293 0.007452
|
||||
-0.000482 -3.2e-05 0.010181
|
||||
-0.006935 -0.007355 0.007453
|
||||
-0.006935 -0.007355 0.007453
|
||||
-0.009861 -0.010048 0.000423
|
||||
-0.009871 -0.009733 0.000423
|
||||
-0.006969 -0.009733 0.007438
|
||||
-0.009861 -0.010048 0.000423
|
||||
-0.006935 -0.007355 -0.006609
|
||||
-0.014771 -0.007355 -0.006609
|
||||
-0.014771 -3.2e-05 -0.009336
|
||||
-0.014771 0.007293 -0.006608
|
||||
-0.009852 0.009984 0.000423
|
||||
-0.014771 0.00998 0.000423
|
||||
-0.014771 0.007293 0.007452
|
||||
-0.014771 -3.2e-05 0.010181
|
||||
-0.014771 -0.007355 0.007453
|
||||
-0.014771 -0.010042 0.000423
|
||||
-0.014771 0.00998 0.000423
|
||||
-0.014771 0.007293 0.007452
|
||||
-0.014771 -0.007355 0.007453
|
||||
-0.014771 -3.2e-05 -0.009336
|
||||
0.007061 -0.010059 0.007441
|
||||
4.5e-05 -0.010059 0.010348
|
||||
0.009956 -0.010051 0.000423
|
||||
4.5e-05 -0.010059 0.000423
|
||||
-0.006971 -0.010059 -0.006596
|
||||
0.007061 -0.010059 -0.006596
|
||||
4.5e-05 0.01 0.010333
|
||||
-0.009852 0.009984 0.000423
|
||||
-0.006965 0.01 0.007434
|
||||
-0.006965 0.01 -0.00659
|
||||
0.007055 0.01 0.007434
|
||||
4.5e-05 0.01 -0.009489
|
||||
0.009942 0.009984 0.000423
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
3 4 5 -1
|
||||
6 7 8 -1
|
||||
6 8 9 -1
|
||||
10 11 12 -1
|
||||
12 11 13 -1
|
||||
14 9 15 -1
|
||||
15 9 8 -1
|
||||
16 17 18 -1
|
||||
18 17 19 -1
|
||||
15 20 21 -1
|
||||
22 20 15 -1
|
||||
20 1 21 -1
|
||||
23 0 24 -1
|
||||
25 0 23 -1
|
||||
0 2 24 -1
|
||||
26 27 28 -1
|
||||
26 29 27 -1
|
||||
26 28 4 -1
|
||||
30 31 32 -1
|
||||
3 31 30 -1
|
||||
3 5 31 -1
|
||||
20 2 1 -1
|
||||
33 5 4 -1
|
||||
5 28 34 -1
|
||||
34 35 5 -1
|
||||
36 31 5 -1
|
||||
5 35 36 -1
|
||||
37 38 31 -1
|
||||
11 39 40 -1
|
||||
41 17 16 -1
|
||||
38 37 42 -1
|
||||
43 17 41 -1
|
||||
41 44 43 -1
|
||||
45 14 43 -1
|
||||
43 44 45 -1
|
||||
46 47 48 -1
|
||||
14 45 49 -1
|
||||
34 6 9 -1
|
||||
47 46 50 -1
|
||||
51 35 52 -1
|
||||
51 53 35 -1
|
||||
53 36 35 -1
|
||||
53 54 36 -1
|
||||
54 37 36 -1
|
||||
54 55 37 -1
|
||||
55 41 56 -1
|
||||
55 57 41 -1
|
||||
57 44 41 -1
|
||||
57 58 44 -1
|
||||
58 45 44 -1
|
||||
58 59 45 -1
|
||||
59 60 45 -1
|
||||
59 61 60 -1
|
||||
61 52 60 -1
|
||||
61 51 52 -1
|
||||
62 63 64 -1
|
||||
62 59 63 -1
|
||||
65 59 62 -1
|
||||
65 66 59 -1
|
||||
53 66 65 -1
|
||||
53 67 66 -1
|
||||
68 69 4 -1
|
||||
24 2 70 -1
|
||||
71 72 73 -1
|
||||
73 72 74 -1
|
||||
75 76 77 -1
|
||||
77 76 78 -1
|
||||
79 72 80 -1
|
||||
81 72 71 -1
|
||||
78 82 77 -1
|
||||
77 82 83 -1
|
||||
84 26 85 -1
|
||||
29 26 84 -1
|
||||
26 69 85 -1
|
||||
86 3 30 -1
|
||||
68 3 86 -1
|
||||
68 4 3 -1
|
||||
20 73 74 -1
|
||||
20 22 73 -1
|
||||
20 74 2 -1
|
||||
23 76 75 -1
|
||||
24 76 23 -1
|
||||
24 70 76 -1
|
||||
26 4 69 -1
|
||||
74 70 2 -1
|
||||
70 74 87 -1
|
||||
87 88 70 -1
|
||||
89 76 70 -1
|
||||
70 88 89 -1
|
||||
90 91 92 -1
|
||||
76 89 93 -1
|
||||
94 82 78 -1
|
||||
91 90 95 -1
|
||||
69 68 95 -1
|
||||
95 96 69 -1
|
||||
97 85 69 -1
|
||||
69 96 98 -1
|
||||
99 100 101 -1
|
||||
79 97 102 -1
|
||||
87 74 72 -1
|
||||
100 99 103 -1
|
||||
104 88 87 -1
|
||||
104 105 88 -1
|
||||
105 89 88 -1
|
||||
105 106 89 -1
|
||||
106 107 89 -1
|
||||
106 108 107 -1
|
||||
108 95 107 -1
|
||||
108 109 95 -1
|
||||
109 96 95 -1
|
||||
109 110 96 -1
|
||||
110 98 96 -1
|
||||
110 111 98 -1
|
||||
111 102 98 -1
|
||||
111 112 102 -1
|
||||
112 87 102 -1
|
||||
112 104 87 -1
|
||||
113 110 114 -1
|
||||
113 115 110 -1
|
||||
106 115 113 -1
|
||||
106 112 115 -1
|
||||
116 112 106 -1
|
||||
116 104 112 -1
|
||||
81 117 118 -1
|
||||
81 119 117 -1
|
||||
81 120 119 -1
|
||||
71 120 81 -1
|
||||
121 120 71 -1
|
||||
121 119 120 -1
|
||||
22 119 121 -1
|
||||
22 122 119 -1
|
||||
123 124 125 -1
|
||||
123 126 124 -1
|
||||
127 126 123 -1
|
||||
127 128 126 -1
|
||||
129 128 127 -1
|
||||
129 25 128 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.92449 0.97932
|
||||
0.92714 0.98313
|
||||
0.92722 0.9831
|
||||
0.94154 0.98265
|
||||
0.93908 0.98386
|
||||
0.93908 0.98394
|
||||
0.93569 0.98713
|
||||
0.93559 0.98716
|
||||
0.93369 0.98918
|
||||
0.93379 0.98919
|
||||
0.94281 0.98656
|
||||
0.94272 0.98656
|
||||
0.94205 0.99144
|
||||
0.94196 0.99141
|
||||
0.9314 0.98998
|
||||
0.93128 0.9897
|
||||
0.94196 0.99141
|
||||
0.93978 0.99477
|
||||
0.94205 0.99144
|
||||
0.93987 0.99482
|
||||
0.93001 0.98676
|
||||
0.93106 0.98968
|
||||
0.93008 0.98687
|
||||
0.92715 0.97904
|
||||
0.92715 0.97913
|
||||
0.92448 0.97923
|
||||
0.93606 0.98531
|
||||
0.93559 0.98716
|
||||
0.93569 0.98713
|
||||
0.93597 0.98535
|
||||
0.94163 0.98261
|
||||
0.94272 0.98656
|
||||
0.94281 0.98656
|
||||
0.93569 0.98713
|
||||
0.93641 0.98684
|
||||
0.93909 0.98405
|
||||
0.94194 0.98665
|
||||
0.94191 0.99135
|
||||
0.94196 0.99141
|
||||
0.94194 0.98665
|
||||
0.94191 0.99135
|
||||
0.93883 0.9945
|
||||
0.93883 0.9945
|
||||
0.93453 0.99602
|
||||
0.93458 0.9959
|
||||
0.93235 0.99114
|
||||
0.93385 0.98922
|
||||
0.93379 0.98919
|
||||
0.9314 0.98998
|
||||
0.93385 0.98922
|
||||
0.93641 0.98684
|
||||
0.93679 0.98823
|
||||
0.93641 0.98684
|
||||
0.93909 0.98797
|
||||
0.94079 0.98899
|
||||
0.9408 0.99104
|
||||
0.94191 0.99135
|
||||
0.93886 0.99252
|
||||
0.93622 0.99236
|
||||
0.93484 0.99109
|
||||
0.93385 0.98922
|
||||
0.93493 0.98947
|
||||
0.9408 0.99104
|
||||
0.93622 0.99236
|
||||
0.93886 0.99252
|
||||
0.94079 0.98899
|
||||
0.93493 0.98947
|
||||
0.93679 0.98823
|
||||
0.93906 0.97939
|
||||
0.93904 0.98379
|
||||
0.92728 0.98304
|
||||
0.93265 0.98406
|
||||
0.93264 0.98398
|
||||
0.93064 0.98476
|
||||
0.93058 0.98468
|
||||
0.92953 0.97718
|
||||
0.92958 0.97728
|
||||
0.93488 0.97673
|
||||
0.93486 0.97682
|
||||
0.93485 0.9842
|
||||
0.93477 0.98425
|
||||
0.93477 0.98425
|
||||
0.93906 0.97939
|
||||
0.93913 0.97932
|
||||
0.93477 0.98425
|
||||
0.93485 0.9842
|
||||
0.93913 0.97932
|
||||
0.93014 0.98395
|
||||
0.92739 0.98295
|
||||
0.92966 0.97817
|
||||
0.93479 0.97687
|
||||
0.93486 0.97682
|
||||
0.92958 0.97728
|
||||
0.93479 0.97687
|
||||
0.93848 0.97994
|
||||
0.93848 0.97994
|
||||
0.93897 0.9837
|
||||
0.93549 0.98382
|
||||
0.93549 0.98382
|
||||
0.93267 0.98391
|
||||
0.93264 0.98398
|
||||
0.93485 0.9842
|
||||
0.93267 0.98391
|
||||
0.93014 0.98395
|
||||
0.93134 0.98222
|
||||
0.93088 0.98018
|
||||
0.93206 0.97826
|
||||
0.93479 0.97687
|
||||
0.93446 0.97774
|
||||
0.93627 0.9793
|
||||
0.93591 0.9812
|
||||
0.93454 0.98238
|
||||
0.93277 0.98284
|
||||
0.93446 0.97774
|
||||
0.93627 0.9793
|
||||
0.93454 0.98238
|
||||
0.93088 0.98018
|
||||
0.93559 0.98716
|
||||
0.93597 0.98535
|
||||
0.93369 0.98918
|
||||
0.93313 0.98651
|
||||
0.93064 0.98476
|
||||
0.93128 0.9897
|
||||
0.92412 0.97295
|
||||
0.92896 0.97429
|
||||
0.92672 0.97259
|
||||
0.92953 0.97718
|
||||
0.92248 0.97494
|
||||
0.92715 0.97904
|
||||
0.92256 0.97753
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
3 4 5 -1
|
||||
6 7 8 -1
|
||||
6 8 9 -1
|
||||
10 11 12 -1
|
||||
12 11 13 -1
|
||||
14 9 15 -1
|
||||
15 9 8 -1
|
||||
16 17 18 -1
|
||||
18 17 19 -1
|
||||
15 20 21 -1
|
||||
22 20 15 -1
|
||||
20 1 21 -1
|
||||
23 0 24 -1
|
||||
25 0 23 -1
|
||||
0 2 24 -1
|
||||
26 27 28 -1
|
||||
26 29 27 -1
|
||||
26 28 4 -1
|
||||
30 31 32 -1
|
||||
3 31 30 -1
|
||||
3 5 31 -1
|
||||
20 2 1 -1
|
||||
33 5 4 -1
|
||||
5 28 34 -1
|
||||
34 35 5 -1
|
||||
36 31 5 -1
|
||||
5 35 36 -1
|
||||
37 38 31 -1
|
||||
11 39 40 -1
|
||||
41 17 16 -1
|
||||
38 37 42 -1
|
||||
43 17 41 -1
|
||||
41 44 43 -1
|
||||
45 14 43 -1
|
||||
43 44 45 -1
|
||||
46 47 48 -1
|
||||
14 45 49 -1
|
||||
34 6 9 -1
|
||||
47 46 50 -1
|
||||
51 35 52 -1
|
||||
51 53 35 -1
|
||||
53 36 35 -1
|
||||
53 54 36 -1
|
||||
54 37 36 -1
|
||||
54 55 37 -1
|
||||
55 41 56 -1
|
||||
55 57 41 -1
|
||||
57 44 41 -1
|
||||
57 58 44 -1
|
||||
58 45 44 -1
|
||||
58 59 45 -1
|
||||
59 60 45 -1
|
||||
59 61 60 -1
|
||||
61 52 60 -1
|
||||
61 51 52 -1
|
||||
62 63 64 -1
|
||||
62 59 63 -1
|
||||
65 59 62 -1
|
||||
65 66 59 -1
|
||||
53 66 65 -1
|
||||
53 67 66 -1
|
||||
68 69 4 -1
|
||||
24 2 70 -1
|
||||
71 72 73 -1
|
||||
73 72 74 -1
|
||||
75 76 77 -1
|
||||
77 76 78 -1
|
||||
79 72 80 -1
|
||||
81 72 71 -1
|
||||
78 82 77 -1
|
||||
77 82 83 -1
|
||||
84 26 85 -1
|
||||
29 26 84 -1
|
||||
26 69 85 -1
|
||||
86 3 30 -1
|
||||
68 3 86 -1
|
||||
68 4 3 -1
|
||||
20 73 74 -1
|
||||
20 22 73 -1
|
||||
20 74 2 -1
|
||||
23 76 75 -1
|
||||
24 76 23 -1
|
||||
24 70 76 -1
|
||||
26 4 69 -1
|
||||
74 70 2 -1
|
||||
70 74 87 -1
|
||||
87 88 70 -1
|
||||
89 76 70 -1
|
||||
70 88 89 -1
|
||||
90 91 92 -1
|
||||
76 89 93 -1
|
||||
94 82 78 -1
|
||||
91 90 95 -1
|
||||
69 68 95 -1
|
||||
95 96 69 -1
|
||||
97 85 69 -1
|
||||
69 96 98 -1
|
||||
99 100 101 -1
|
||||
79 97 102 -1
|
||||
87 74 72 -1
|
||||
100 99 103 -1
|
||||
104 88 87 -1
|
||||
104 105 88 -1
|
||||
105 89 88 -1
|
||||
105 106 89 -1
|
||||
106 107 89 -1
|
||||
106 108 107 -1
|
||||
108 95 107 -1
|
||||
108 109 95 -1
|
||||
109 96 95 -1
|
||||
109 110 96 -1
|
||||
110 98 96 -1
|
||||
110 111 98 -1
|
||||
111 102 98 -1
|
||||
111 112 102 -1
|
||||
112 87 102 -1
|
||||
112 104 87 -1
|
||||
113 110 114 -1
|
||||
113 115 110 -1
|
||||
106 115 113 -1
|
||||
106 112 115 -1
|
||||
116 112 106 -1
|
||||
116 104 112 -1
|
||||
81 117 118 -1
|
||||
81 119 117 -1
|
||||
81 120 119 -1
|
||||
71 120 81 -1
|
||||
121 120 71 -1
|
||||
121 119 120 -1
|
||||
22 119 121 -1
|
||||
22 122 119 -1
|
||||
123 124 125 -1
|
||||
123 126 124 -1
|
||||
127 126 123 -1
|
||||
127 128 126 -1
|
||||
129 128 127 -1
|
||||
129 25 128 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
52
simulation/atlas/protos/LTalusSolid.proto
Normal file
52
simulation/atlas/protos/LTalusSolid.proto
Normal file
|
@ -0,0 +1,52 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LTalusSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LTalusMesh {
|
||||
}
|
||||
]
|
||||
name "LTalus"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation 0 0 0
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.010181
|
||||
height 0.029542
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation 0 0 0
|
||||
rotation 1.0 0.0 0.0 3.14079632679
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.010348
|
||||
height 0.010059
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 0.817
|
||||
centerOfMass 0 0 0
|
||||
inertiaMatrix [0.001 0.0035 0.004, 0 0 0 ]
|
||||
}
|
||||
}
|
||||
}
|
566
simulation/atlas/protos/LUarmMesh.proto
Normal file
566
simulation/atlas/protos/LUarmMesh.proto
Normal file
|
@ -0,0 +1,566 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_uarm.dae
|
||||
|
||||
PROTO LUarmMesh [
|
||||
]
|
||||
{
|
||||
Group {
|
||||
children [
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
-0.045202 0.000334 -0.003915
|
||||
-0.042134 0.000334 0.012497
|
||||
-0.045202 0.116677 -0.003915
|
||||
-0.042134 0.116677 0.012497
|
||||
-0.033343 0.000334 0.026694
|
||||
-0.033343 0.116677 0.026694
|
||||
-0.020018 0.000334 0.036757
|
||||
-0.020018 0.116677 0.036757
|
||||
-0.003959 0.000334 0.041326
|
||||
-0.003959 0.116677 0.041326
|
||||
0.012668 0.000334 0.039786
|
||||
0.012668 0.116677 0.039786
|
||||
0.027615 0.000334 0.032343
|
||||
0.027615 0.116677 0.032343
|
||||
0.038863 0.000334 0.020003
|
||||
0.038863 0.116677 0.020003
|
||||
0.044895 0.000334 0.004432
|
||||
0.044895 0.116677 0.004432
|
||||
0.044895 0.000334 -0.012264
|
||||
0.044895 0.116677 -0.012264
|
||||
0.038863 0.000334 -0.027835
|
||||
0.038863 0.116677 -0.027835
|
||||
0.027615 0.000334 -0.040174
|
||||
0.027615 0.116677 -0.040174
|
||||
0.012668 0.000334 -0.047616
|
||||
0.012668 0.116677 -0.047616
|
||||
-0.003959 0.000334 -0.049157
|
||||
-0.003959 0.116677 -0.049157
|
||||
-0.020018 0.000334 -0.044587
|
||||
-0.020018 0.116677 -0.044587
|
||||
-0.033343 0.000334 -0.034526
|
||||
-0.033343 0.116677 -0.034526
|
||||
-0.042134 0.000334 -0.020329
|
||||
-0.042134 0.116677 -0.020329
|
||||
-0.045202 0.000334 -0.003915
|
||||
-0.045202 0.116677 -0.003915
|
||||
0.027615 0.116677 -0.040174
|
||||
0.012668 0.116677 -0.047616
|
||||
0.038863 0.116677 -0.027835
|
||||
0.044895 0.116677 -0.012264
|
||||
-0.003959 0.116677 -0.049157
|
||||
0.044895 0.116677 0.004432
|
||||
-0.020018 0.116677 -0.044587
|
||||
0.038863 0.116677 0.020003
|
||||
-0.033343 0.116677 -0.034526
|
||||
0.027615 0.116677 0.032343
|
||||
-0.042134 0.116677 -0.020329
|
||||
0.012668 0.116677 0.039786
|
||||
-0.045202 0.116677 -0.003915
|
||||
-0.003959 0.116677 0.041326
|
||||
-0.042134 0.116677 0.012497
|
||||
-0.020018 0.116677 0.036757
|
||||
-0.033343 0.116677 0.026694
|
||||
0.012668 0.000334 0.039786
|
||||
-0.003959 0.000334 0.041326
|
||||
0.027615 0.000334 0.032343
|
||||
0.038863 0.000334 0.020003
|
||||
-0.020018 0.000334 0.036757
|
||||
0.044895 0.000334 0.004432
|
||||
-0.033343 0.000334 0.026694
|
||||
-0.042134 0.000334 0.012497
|
||||
-0.045202 0.000334 -0.003915
|
||||
0.027615 0.000334 -0.040174
|
||||
-0.042134 0.000334 -0.020329
|
||||
0.012668 0.000334 -0.047616
|
||||
-0.033343 0.000334 -0.034526
|
||||
-0.003959 0.000334 -0.049157
|
||||
-0.020018 0.000334 -0.044587
|
||||
0.044601 0.075449 0.00899
|
||||
0.044601 0.078517 0.025403
|
||||
-0.044133 0.075448 0.00899
|
||||
-0.044134 0.078517 0.025403
|
||||
0.044601 0.087307 0.0396
|
||||
-0.044133 0.087307 0.0396
|
||||
0.044601 0.100631 0.049662
|
||||
-0.044133 0.100631 0.049662
|
||||
0.044601 0.116692 0.054231
|
||||
-0.044133 0.116692 0.054231
|
||||
0.044601 0.133318 0.05269
|
||||
-0.044134 0.133318 0.05269
|
||||
-0.044133 0.116692 0.054231
|
||||
0.044601 0.148265 0.045249
|
||||
-0.044133 0.148265 0.045249
|
||||
0.044601 0.159514 0.032909
|
||||
-0.044134 0.159514 0.032909
|
||||
0.044601 0.165546 0.017338
|
||||
-0.044133 0.165546 0.017338
|
||||
0.044601 0.165546 0.000642
|
||||
-0.044133 0.165546 0.000642
|
||||
0.044601 0.159514 -0.014929
|
||||
-0.044134 0.159514 -0.014929
|
||||
0.044601 0.148265 -0.027269
|
||||
-0.044133 0.148265 -0.027269
|
||||
0.044601 0.133318 -0.034711
|
||||
-0.044134 0.133318 -0.034711
|
||||
0.044601 0.116692 -0.036252
|
||||
-0.044133 0.116692 -0.036252
|
||||
0.044601 0.100631 -0.031683
|
||||
-0.044133 0.100631 -0.031683
|
||||
0.044601 0.087307 -0.02162
|
||||
-0.044133 0.087307 -0.02162
|
||||
0.044601 0.078517 -0.007423
|
||||
-0.044134 0.078517 -0.007423
|
||||
-0.044133 0.148265 -0.027269
|
||||
-0.044134 0.133318 -0.034711
|
||||
-0.044134 0.159514 -0.014929
|
||||
-0.044133 0.165546 0.000642
|
||||
-0.044133 0.116692 -0.036252
|
||||
-0.044133 0.165546 0.017338
|
||||
-0.044133 0.100631 -0.031683
|
||||
-0.044134 0.159514 0.032909
|
||||
-0.044133 0.087307 -0.02162
|
||||
-0.044133 0.148265 0.045249
|
||||
-0.044134 0.078517 -0.007423
|
||||
-0.044134 0.133318 0.05269
|
||||
-0.044133 0.075448 0.00899
|
||||
-0.044133 0.116692 0.054231
|
||||
-0.044134 0.078517 0.025403
|
||||
-0.044133 0.100631 0.049662
|
||||
-0.044133 0.087307 0.0396
|
||||
0.044601 0.133318 0.05269
|
||||
0.044601 0.116692 0.054231
|
||||
0.044601 0.148265 0.045249
|
||||
0.044601 0.159514 0.032909
|
||||
0.044601 0.100631 0.049662
|
||||
0.044601 0.165546 0.017338
|
||||
0.044601 0.087307 0.0396
|
||||
0.044601 0.165546 0.000642
|
||||
0.044601 0.078517 0.025403
|
||||
0.044601 0.159514 -0.014929
|
||||
0.044601 0.075449 0.00899
|
||||
0.044601 0.148265 -0.027269
|
||||
0.044601 0.078517 -0.007423
|
||||
0.044601 0.133318 -0.034711
|
||||
0.044601 0.087307 -0.02162
|
||||
0.044601 0.116692 -0.036252
|
||||
0.044601 0.100631 -0.031683
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
1 3 2 -1
|
||||
1 4 3 -1
|
||||
4 5 3 -1
|
||||
4 6 5 -1
|
||||
6 7 5 -1
|
||||
6 8 7 -1
|
||||
8 9 7 -1
|
||||
8 10 9 -1
|
||||
10 11 9 -1
|
||||
10 12 11 -1
|
||||
12 13 11 -1
|
||||
12 14 13 -1
|
||||
14 15 13 -1
|
||||
14 16 15 -1
|
||||
16 17 15 -1
|
||||
16 18 17 -1
|
||||
18 19 17 -1
|
||||
18 20 19 -1
|
||||
20 21 19 -1
|
||||
20 22 21 -1
|
||||
22 23 21 -1
|
||||
22 24 23 -1
|
||||
24 25 23 -1
|
||||
24 26 25 -1
|
||||
26 27 25 -1
|
||||
26 28 27 -1
|
||||
28 29 27 -1
|
||||
28 30 29 -1
|
||||
30 31 29 -1
|
||||
30 32 31 -1
|
||||
32 33 31 -1
|
||||
32 34 33 -1
|
||||
34 35 33 -1
|
||||
36 37 38 -1
|
||||
38 37 39 -1
|
||||
37 40 39 -1
|
||||
39 40 41 -1
|
||||
40 42 41 -1
|
||||
41 42 43 -1
|
||||
42 44 43 -1
|
||||
43 44 45 -1
|
||||
44 46 45 -1
|
||||
45 46 47 -1
|
||||
46 48 47 -1
|
||||
47 48 49 -1
|
||||
48 50 49 -1
|
||||
49 50 51 -1
|
||||
50 52 51 -1
|
||||
53 54 55 -1
|
||||
55 54 56 -1
|
||||
54 57 56 -1
|
||||
56 57 58 -1
|
||||
57 59 58 -1
|
||||
58 59 18 -1
|
||||
59 60 18 -1
|
||||
18 60 20 -1
|
||||
60 61 20 -1
|
||||
20 61 62 -1
|
||||
61 63 62 -1
|
||||
62 63 64 -1
|
||||
63 65 64 -1
|
||||
64 65 66 -1
|
||||
65 67 66 -1
|
||||
68 69 70 -1
|
||||
69 71 70 -1
|
||||
69 72 71 -1
|
||||
72 73 71 -1
|
||||
72 74 73 -1
|
||||
74 75 73 -1
|
||||
74 76 75 -1
|
||||
76 77 75 -1
|
||||
76 78 77 -1
|
||||
78 79 80 -1
|
||||
78 81 79 -1
|
||||
81 82 79 -1
|
||||
81 83 82 -1
|
||||
83 84 82 -1
|
||||
83 85 84 -1
|
||||
85 86 84 -1
|
||||
85 87 86 -1
|
||||
87 88 86 -1
|
||||
87 89 88 -1
|
||||
89 90 88 -1
|
||||
89 91 90 -1
|
||||
91 92 90 -1
|
||||
91 93 92 -1
|
||||
93 94 92 -1
|
||||
93 95 94 -1
|
||||
95 96 94 -1
|
||||
95 97 96 -1
|
||||
97 98 96 -1
|
||||
97 99 98 -1
|
||||
99 100 98 -1
|
||||
99 101 100 -1
|
||||
101 102 100 -1
|
||||
101 68 102 -1
|
||||
68 70 102 -1
|
||||
103 104 105 -1
|
||||
105 104 106 -1
|
||||
104 107 106 -1
|
||||
106 107 108 -1
|
||||
107 109 108 -1
|
||||
108 109 110 -1
|
||||
109 111 110 -1
|
||||
110 111 112 -1
|
||||
111 113 112 -1
|
||||
112 113 114 -1
|
||||
113 115 114 -1
|
||||
114 115 116 -1
|
||||
115 117 116 -1
|
||||
116 117 118 -1
|
||||
117 119 118 -1
|
||||
120 121 122 -1
|
||||
122 121 123 -1
|
||||
121 124 123 -1
|
||||
123 124 125 -1
|
||||
124 126 125 -1
|
||||
125 126 127 -1
|
||||
126 128 127 -1
|
||||
127 128 129 -1
|
||||
128 130 129 -1
|
||||
129 130 131 -1
|
||||
130 132 131 -1
|
||||
131 132 133 -1
|
||||
132 134 133 -1
|
||||
133 134 135 -1
|
||||
134 136 135 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.18624 0.01556
|
||||
0.19189 0.01758
|
||||
0.17057 0.05333
|
||||
0.17595 0.05577
|
||||
0.19747 0.01978
|
||||
0.18138 0.05814
|
||||
0.20301 0.02207
|
||||
0.18684 0.06047
|
||||
0.20853 0.02439
|
||||
0.19229 0.06281
|
||||
0.21403 0.02674
|
||||
0.19775 0.06516
|
||||
0.21952 0.02909
|
||||
0.20321 0.06753
|
||||
0.225 0.03141
|
||||
0.20866 0.06994
|
||||
0.23049 0.0337
|
||||
0.21411 0.07239
|
||||
0.23599 0.03594
|
||||
0.21954 0.07489
|
||||
0.24172 0.03866
|
||||
0.22548 0.07622
|
||||
0.24721 0.04099
|
||||
0.23088 0.07873
|
||||
0.25268 0.04332
|
||||
0.23631 0.0812
|
||||
0.25815 0.04565
|
||||
0.24176 0.08365
|
||||
0.26361 0.04798
|
||||
0.24725 0.08606
|
||||
0.26905 0.05032
|
||||
0.25276 0.0884
|
||||
0.27447 0.05269
|
||||
0.25832 0.09065
|
||||
0.27984 0.05517
|
||||
0.26396 0.09271
|
||||
0.22965 0.07831
|
||||
0.23485 0.08232
|
||||
0.22548 0.07622
|
||||
0.21954 0.07489
|
||||
0.23722 0.08771
|
||||
0.21378 0.07678
|
||||
0.23748 0.09357
|
||||
0.20915 0.08065
|
||||
0.23563 0.09916
|
||||
0.20625 0.08594
|
||||
0.23189 0.10371
|
||||
0.20545 0.09192
|
||||
0.22676 0.1066
|
||||
0.20685 0.09777
|
||||
0.22092 0.10744
|
||||
0.21024 0.10271
|
||||
0.21515 0.10608
|
||||
0.23536 0.01198
|
||||
0.23964 0.00859
|
||||
0.23231 0.01719
|
||||
0.23115 0.02356
|
||||
0.24443 0.00734
|
||||
0.23233 0.03018
|
||||
0.24904 0.00826
|
||||
0.25296 0.01109
|
||||
0.25751 0.01278
|
||||
0.24849 0.03863
|
||||
0.26085 0.01613
|
||||
0.25463 0.03605
|
||||
0.26245 0.02081
|
||||
0.2593 0.03162
|
||||
0.26197 0.02624
|
||||
0.12634 0.25825
|
||||
0.12929 0.25982
|
||||
0.10899 0.2626
|
||||
0.11027 0.26601
|
||||
0.13227 0.2608
|
||||
0.1105 0.26912
|
||||
0.13507 0.26116
|
||||
0.10953 0.27184
|
||||
0.13767 0.26082
|
||||
0.10739 0.27399
|
||||
0.1449 0.26122
|
||||
0.14632 0.22403
|
||||
0.15227 0.22445
|
||||
0.14133 0.2539
|
||||
0.13977 0.22334
|
||||
0.13927 0.24868
|
||||
0.13242 0.22322
|
||||
0.13664 0.2445
|
||||
0.12441 0.22441
|
||||
0.13332 0.24168
|
||||
0.11616 0.22746
|
||||
0.12973 0.24069
|
||||
0.10834 0.2326
|
||||
0.12675 0.24169
|
||||
0.10852 0.23561
|
||||
0.12418 0.24371
|
||||
0.10758 0.23867
|
||||
0.12237 0.24645
|
||||
0.10676 0.24295
|
||||
0.12163 0.24968
|
||||
0.10637 0.24791
|
||||
0.12213 0.253
|
||||
0.10666 0.25315
|
||||
0.12381 0.25595
|
||||
0.10763 0.25819
|
||||
0.10852 0.23561
|
||||
0.10758 0.23867
|
||||
0.10834 0.2326
|
||||
0.10209 0.23663
|
||||
0.10676 0.24295
|
||||
0.09659 0.24331
|
||||
0.10637 0.24791
|
||||
0.09395 0.25215
|
||||
0.10666 0.25315
|
||||
0.09533 0.26141
|
||||
0.10763 0.25819
|
||||
0.10034 0.2691
|
||||
0.10899 0.2626
|
||||
0.10739 0.27399
|
||||
0.11027 0.26601
|
||||
0.10953 0.27184
|
||||
0.1105 0.26912
|
||||
0.1449 0.26122
|
||||
0.13767 0.26082
|
||||
0.14133 0.2539
|
||||
0.13927 0.24868
|
||||
0.13507 0.26116
|
||||
0.13664 0.2445
|
||||
0.13227 0.2608
|
||||
0.13332 0.24168
|
||||
0.12929 0.25982
|
||||
0.12973 0.24069
|
||||
0.12634 0.25825
|
||||
0.12675 0.24169
|
||||
0.12381 0.25595
|
||||
0.12418 0.24371
|
||||
0.12213 0.253
|
||||
0.12237 0.24645
|
||||
0.12163 0.24968
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
1 3 2 -1
|
||||
1 4 3 -1
|
||||
4 5 3 -1
|
||||
4 6 5 -1
|
||||
6 7 5 -1
|
||||
6 8 7 -1
|
||||
8 9 7 -1
|
||||
8 10 9 -1
|
||||
10 11 9 -1
|
||||
10 12 11 -1
|
||||
12 13 11 -1
|
||||
12 14 13 -1
|
||||
14 15 13 -1
|
||||
14 16 15 -1
|
||||
16 17 15 -1
|
||||
16 18 17 -1
|
||||
18 19 17 -1
|
||||
18 20 19 -1
|
||||
20 21 19 -1
|
||||
20 22 21 -1
|
||||
22 23 21 -1
|
||||
22 24 23 -1
|
||||
24 25 23 -1
|
||||
24 26 25 -1
|
||||
26 27 25 -1
|
||||
26 28 27 -1
|
||||
28 29 27 -1
|
||||
28 30 29 -1
|
||||
30 31 29 -1
|
||||
30 32 31 -1
|
||||
32 33 31 -1
|
||||
32 34 33 -1
|
||||
34 35 33 -1
|
||||
36 37 38 -1
|
||||
38 37 39 -1
|
||||
37 40 39 -1
|
||||
39 40 41 -1
|
||||
40 42 41 -1
|
||||
41 42 43 -1
|
||||
42 44 43 -1
|
||||
43 44 45 -1
|
||||
44 46 45 -1
|
||||
45 46 47 -1
|
||||
46 48 47 -1
|
||||
47 48 49 -1
|
||||
48 50 49 -1
|
||||
49 50 51 -1
|
||||
50 52 51 -1
|
||||
53 54 55 -1
|
||||
55 54 56 -1
|
||||
54 57 56 -1
|
||||
56 57 58 -1
|
||||
57 59 58 -1
|
||||
58 59 18 -1
|
||||
59 60 18 -1
|
||||
18 60 20 -1
|
||||
60 61 20 -1
|
||||
20 61 62 -1
|
||||
61 63 62 -1
|
||||
62 63 64 -1
|
||||
63 65 64 -1
|
||||
64 65 66 -1
|
||||
65 67 66 -1
|
||||
68 69 70 -1
|
||||
69 71 70 -1
|
||||
69 72 71 -1
|
||||
72 73 71 -1
|
||||
72 74 73 -1
|
||||
74 75 73 -1
|
||||
74 76 75 -1
|
||||
76 77 75 -1
|
||||
76 78 77 -1
|
||||
78 79 80 -1
|
||||
78 81 79 -1
|
||||
81 82 79 -1
|
||||
81 83 82 -1
|
||||
83 84 82 -1
|
||||
83 85 84 -1
|
||||
85 86 84 -1
|
||||
85 87 86 -1
|
||||
87 88 86 -1
|
||||
87 89 88 -1
|
||||
89 90 88 -1
|
||||
89 91 90 -1
|
||||
91 92 90 -1
|
||||
91 93 92 -1
|
||||
93 94 92 -1
|
||||
93 95 94 -1
|
||||
95 96 94 -1
|
||||
95 97 96 -1
|
||||
97 98 96 -1
|
||||
97 99 98 -1
|
||||
99 100 98 -1
|
||||
99 101 100 -1
|
||||
101 102 100 -1
|
||||
101 68 102 -1
|
||||
68 70 102 -1
|
||||
103 104 105 -1
|
||||
105 104 106 -1
|
||||
104 107 106 -1
|
||||
106 107 108 -1
|
||||
107 109 108 -1
|
||||
108 109 110 -1
|
||||
109 111 110 -1
|
||||
110 111 112 -1
|
||||
111 113 112 -1
|
||||
112 113 114 -1
|
||||
113 115 114 -1
|
||||
114 115 116 -1
|
||||
115 117 116 -1
|
||||
116 117 118 -1
|
||||
117 119 118 -1
|
||||
120 121 122 -1
|
||||
122 121 123 -1
|
||||
121 124 123 -1
|
||||
123 124 125 -1
|
||||
124 126 125 -1
|
||||
125 126 127 -1
|
||||
126 128 127 -1
|
||||
127 128 129 -1
|
||||
128 130 129 -1
|
||||
129 130 131 -1
|
||||
130 132 131 -1
|
||||
131 132 133 -1
|
||||
132 134 133 -1
|
||||
133 134 135 -1
|
||||
134 136 135 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
52
simulation/atlas/protos/LUarmSolid.proto
Normal file
52
simulation/atlas/protos/LUarmSolid.proto
Normal file
|
@ -0,0 +1,52 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LUarmSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LUarmMesh {
|
||||
}
|
||||
]
|
||||
name "LUarm"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation 0 0.0583385 0
|
||||
rotation 1.0 0.0 0.0 3.14079632679
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.0449
|
||||
height 0.116677
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation 0 0.1205235 0.00912975
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.04504847
|
||||
height 0.088934
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 1.881
|
||||
centerOfMass 0.007 0.114 0.008
|
||||
inertiaMatrix [0.002 0.003 0.003, 0 0 0 ]
|
||||
}
|
||||
}
|
||||
}
|
581
simulation/atlas/protos/LUglutMesh.proto
Normal file
581
simulation/atlas/protos/LUglutMesh.proto
Normal file
|
@ -0,0 +1,581 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/a43aef617288746c30be76f58afe23a4c3108b5f/ros/atlas_description/meshes/l_uglut.dae
|
||||
|
||||
PROTO LUglutMesh [
|
||||
]
|
||||
{
|
||||
Group {
|
||||
children [
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
0.019538 -2e-06 -0.038617
|
||||
0.018197 0.007172 -0.038617
|
||||
0.019538 -2e-06 0.040421
|
||||
0.018197 0.007172 0.040421
|
||||
0.014355 0.013377 -0.038617
|
||||
0.014355 0.013377 0.040421
|
||||
0.008531 0.017775 -0.038617
|
||||
0.008531 0.017775 0.040421
|
||||
0.001511 0.019772 -0.038617
|
||||
0.001511 0.019772 0.040421
|
||||
-0.005756 0.019099 -0.038617
|
||||
-0.005756 0.019099 0.040421
|
||||
-0.012289 0.015846 -0.038617
|
||||
-0.012289 0.015846 0.040421
|
||||
-0.017205 0.010452 -0.038617
|
||||
-0.017205 0.010452 0.040421
|
||||
-0.019841 0.003647 -0.038617
|
||||
-0.019841 0.003647 0.040421
|
||||
-0.019841 -0.003651 -0.038617
|
||||
-0.019841 -0.003651 0.040421
|
||||
-0.017205 -0.010456 -0.038617
|
||||
-0.017205 -0.010456 0.040421
|
||||
-0.017205 -0.010456 -0.038617
|
||||
-0.012289 -0.015849 -0.038617
|
||||
-0.017205 -0.010456 0.040421
|
||||
-0.012289 -0.015849 0.040421
|
||||
-0.005756 -0.019102 -0.038617
|
||||
-0.005756 -0.019102 0.040421
|
||||
0.001511 -0.019775 -0.038617
|
||||
0.001511 -0.019775 0.040421
|
||||
0.008531 -0.017778 -0.038617
|
||||
0.008531 -0.017778 0.040421
|
||||
0.014355 -0.01338 -0.038617
|
||||
0.014355 -0.01338 0.040421
|
||||
0.018197 -0.007176 -0.038617
|
||||
0.018197 -0.007176 0.040421
|
||||
0.019538 -2e-06 -0.038617
|
||||
0.008531 -0.017778 0.040421
|
||||
-0.005756 -0.019102 0.040421
|
||||
0.014355 -0.01338 0.040421
|
||||
-0.012289 -0.015849 0.040421
|
||||
0.018197 -0.007176 0.040421
|
||||
-0.017205 -0.010456 0.040421
|
||||
-0.019841 -0.003651 0.040421
|
||||
0.018197 0.007172 0.040421
|
||||
-0.019841 0.003647 0.040421
|
||||
0.014355 0.013377 0.040421
|
||||
-0.017205 0.010452 0.040421
|
||||
0.008531 0.017775 0.040421
|
||||
-0.012289 0.015846 0.040421
|
||||
-0.005756 0.019099 0.040421
|
||||
0.014355 0.013377 -0.038617
|
||||
0.001511 0.019772 -0.038617
|
||||
0.008531 0.017775 -0.038617
|
||||
0.018197 0.007172 -0.038617
|
||||
-0.005756 0.019099 -0.038617
|
||||
0.019538 -2e-06 -0.038617
|
||||
-0.012289 0.015846 -0.038617
|
||||
0.018197 -0.007176 -0.038617
|
||||
-0.017205 0.010452 -0.038617
|
||||
0.014355 -0.01338 -0.038617
|
||||
-0.019841 0.003647 -0.038617
|
||||
0.008531 -0.017778 -0.038617
|
||||
-0.019841 -0.003651 -0.038617
|
||||
0.001511 -0.019775 -0.038617
|
||||
-0.017205 -0.010456 -0.038617
|
||||
-0.005756 -0.019102 -0.038617
|
||||
-0.012289 -0.015849 -0.038617
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
2 1 3 -1
|
||||
1 4 3 -1
|
||||
3 4 5 -1
|
||||
4 6 5 -1
|
||||
5 6 7 -1
|
||||
6 8 7 -1
|
||||
7 8 9 -1
|
||||
8 10 9 -1
|
||||
9 10 11 -1
|
||||
10 12 11 -1
|
||||
11 12 13 -1
|
||||
12 14 13 -1
|
||||
13 14 15 -1
|
||||
14 16 15 -1
|
||||
15 16 17 -1
|
||||
16 18 17 -1
|
||||
17 18 19 -1
|
||||
18 20 19 -1
|
||||
19 20 21 -1
|
||||
22 23 24 -1
|
||||
24 23 25 -1
|
||||
23 26 25 -1
|
||||
25 26 27 -1
|
||||
26 28 27 -1
|
||||
27 28 29 -1
|
||||
28 30 29 -1
|
||||
29 30 31 -1
|
||||
30 32 31 -1
|
||||
31 32 33 -1
|
||||
32 34 33 -1
|
||||
33 34 35 -1
|
||||
34 36 35 -1
|
||||
35 36 2 -1
|
||||
37 38 29 -1
|
||||
39 38 37 -1
|
||||
39 40 38 -1
|
||||
41 40 39 -1
|
||||
41 42 40 -1
|
||||
2 42 41 -1
|
||||
2 43 42 -1
|
||||
44 43 2 -1
|
||||
44 45 43 -1
|
||||
46 45 44 -1
|
||||
46 47 45 -1
|
||||
48 47 46 -1
|
||||
48 49 47 -1
|
||||
9 49 48 -1
|
||||
9 50 49 -1
|
||||
51 52 53 -1
|
||||
54 52 51 -1
|
||||
54 55 52 -1
|
||||
56 55 54 -1
|
||||
56 57 55 -1
|
||||
58 57 56 -1
|
||||
58 59 57 -1
|
||||
60 59 58 -1
|
||||
60 61 59 -1
|
||||
62 61 60 -1
|
||||
62 63 61 -1
|
||||
64 63 62 -1
|
||||
64 65 63 -1
|
||||
66 65 64 -1
|
||||
66 67 65 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.07285 0.64394
|
||||
0.07443 0.64416
|
||||
0.08231 0.62272
|
||||
0.08442 0.62329
|
||||
0.07584 0.64483
|
||||
0.08648 0.62379
|
||||
0.07696 0.64598
|
||||
0.0884 0.62414
|
||||
0.07771 0.64751
|
||||
0.09014 0.62424
|
||||
0.07805 0.64932
|
||||
0.09167 0.62403
|
||||
0.07803 0.65129
|
||||
0.09378 0.62586
|
||||
0.07767 0.65336
|
||||
0.09574 0.62764
|
||||
0.0799 0.65468
|
||||
0.09774 0.62935
|
||||
0.08209 0.65607
|
||||
0.09978 0.631
|
||||
0.08424 0.65752
|
||||
0.10185 0.6326
|
||||
0.06383 0.64736
|
||||
0.06464 0.64583
|
||||
0.07047 0.61513
|
||||
0.07312 0.61567
|
||||
0.06561 0.64496
|
||||
0.07402 0.6176
|
||||
0.0667 0.64465
|
||||
0.0752 0.61926
|
||||
0.06809 0.64447
|
||||
0.07667 0.62056
|
||||
0.06964 0.64432
|
||||
0.07838 0.62149
|
||||
0.07122 0.64407
|
||||
0.08025 0.62213
|
||||
0.07285 0.64394
|
||||
0.07667 0.62056
|
||||
0.07402 0.6176
|
||||
0.07838 0.62149
|
||||
0.07312 0.61567
|
||||
0.08025 0.62213
|
||||
0.07653 0.6141
|
||||
0.08058 0.61378
|
||||
0.08442 0.62329
|
||||
0.08464 0.61495
|
||||
0.08648 0.62379
|
||||
0.08806 0.61744
|
||||
0.0884 0.62414
|
||||
0.09041 0.62072
|
||||
0.09167 0.62403
|
||||
0.07584 0.64483
|
||||
0.07771 0.64751
|
||||
0.07696 0.64598
|
||||
0.07443 0.64416
|
||||
0.07805 0.64932
|
||||
0.07285 0.64394
|
||||
0.07803 0.65129
|
||||
0.07122 0.64407
|
||||
0.07767 0.65336
|
||||
0.06964 0.64432
|
||||
0.0725 0.65265
|
||||
0.06809 0.64447
|
||||
0.06769 0.65049
|
||||
0.0667 0.64465
|
||||
0.06383 0.64736
|
||||
0.06561 0.64496
|
||||
0.06464 0.64583
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
2 1 3 -1
|
||||
1 4 3 -1
|
||||
3 4 5 -1
|
||||
4 6 5 -1
|
||||
5 6 7 -1
|
||||
6 8 7 -1
|
||||
7 8 9 -1
|
||||
8 10 9 -1
|
||||
9 10 11 -1
|
||||
10 12 11 -1
|
||||
11 12 13 -1
|
||||
12 14 13 -1
|
||||
13 14 15 -1
|
||||
14 16 15 -1
|
||||
15 16 17 -1
|
||||
16 18 17 -1
|
||||
17 18 19 -1
|
||||
18 20 19 -1
|
||||
19 20 21 -1
|
||||
22 23 24 -1
|
||||
24 23 25 -1
|
||||
23 26 25 -1
|
||||
25 26 27 -1
|
||||
26 28 27 -1
|
||||
27 28 29 -1
|
||||
28 30 29 -1
|
||||
29 30 31 -1
|
||||
30 32 31 -1
|
||||
31 32 33 -1
|
||||
32 34 33 -1
|
||||
33 34 35 -1
|
||||
34 36 35 -1
|
||||
35 36 2 -1
|
||||
37 38 29 -1
|
||||
39 38 37 -1
|
||||
39 40 38 -1
|
||||
41 40 39 -1
|
||||
41 42 40 -1
|
||||
2 42 41 -1
|
||||
2 43 42 -1
|
||||
44 43 2 -1
|
||||
44 45 43 -1
|
||||
46 45 44 -1
|
||||
46 47 45 -1
|
||||
48 47 46 -1
|
||||
48 49 47 -1
|
||||
9 49 48 -1
|
||||
9 50 49 -1
|
||||
51 52 53 -1
|
||||
54 52 51 -1
|
||||
54 55 52 -1
|
||||
56 55 54 -1
|
||||
56 57 55 -1
|
||||
58 57 56 -1
|
||||
58 59 57 -1
|
||||
60 59 58 -1
|
||||
60 61 59 -1
|
||||
62 61 60 -1
|
||||
62 63 61 -1
|
||||
64 63 62 -1
|
||||
64 65 63 -1
|
||||
66 65 64 -1
|
||||
66 67 65 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
Shape {
|
||||
appearance RegularAppearance {
|
||||
}
|
||||
geometry IndexedFaceSet {
|
||||
coord Coordinate {
|
||||
point [
|
||||
0.039198 -2e-06 0.02076
|
||||
0.039198 0.007172 0.019419
|
||||
-0.03984 -2e-06 0.02076
|
||||
-0.03984 0.007172 0.019419
|
||||
-0.03984 0.013377 0.015577
|
||||
0.039198 0.013377 0.015577
|
||||
-0.03984 0.017775 0.009753
|
||||
0.039198 0.017775 0.009753
|
||||
0.039198 0.019772 0.002735
|
||||
-0.03984 0.019772 0.002735
|
||||
0.039198 0.019772 0.002735
|
||||
0.039198 0.019099 -0.004532
|
||||
-0.03984 0.019099 -0.004532
|
||||
0.039198 0.015846 -0.011065
|
||||
-0.03984 0.015846 -0.011065
|
||||
0.039198 0.010452 -0.015982
|
||||
-0.03984 0.010452 -0.015982
|
||||
0.039198 0.003647 -0.018619
|
||||
-0.03984 0.003647 -0.018619
|
||||
0.039198 -0.003651 -0.018619
|
||||
-0.03984 0.003647 -0.018619
|
||||
-0.03984 -0.003651 -0.018619
|
||||
0.039198 -0.003651 -0.018619
|
||||
0.039198 -0.010456 -0.015982
|
||||
-0.03984 -0.010456 -0.015982
|
||||
0.039198 -0.015849 -0.011065
|
||||
-0.03984 -0.015849 -0.011065
|
||||
0.039198 -0.019102 -0.004532
|
||||
-0.03984 -0.019102 -0.004532
|
||||
0.039198 -0.019775 0.002735
|
||||
-0.03984 -0.019775 0.002735
|
||||
0.039198 -0.019775 0.002735
|
||||
0.039198 -0.017778 0.009753
|
||||
-0.03984 -0.019775 0.002735
|
||||
-0.03984 -0.017778 0.009753
|
||||
-0.03984 -0.01338 0.015577
|
||||
0.039198 -0.01338 0.015577
|
||||
0.039198 -0.007176 0.019419
|
||||
-0.03984 -0.007176 0.019419
|
||||
-0.03984 -0.017778 0.009753
|
||||
-0.03984 -0.019102 -0.004532
|
||||
-0.03984 -0.019775 0.002735
|
||||
-0.03984 -0.01338 0.015577
|
||||
-0.03984 -0.015849 -0.011065
|
||||
-0.03984 -0.007176 0.019419
|
||||
-0.03984 -0.010456 -0.015982
|
||||
-0.03984 -2e-06 0.02076
|
||||
-0.03984 0.007172 0.019419
|
||||
-0.03984 0.013377 0.015577
|
||||
-0.03984 0.010452 -0.015982
|
||||
-0.03984 0.017775 0.009753
|
||||
-0.03984 0.015846 -0.011065
|
||||
-0.03984 0.019772 0.002735
|
||||
-0.03984 0.019099 -0.004532
|
||||
0.039198 0.013377 0.015577
|
||||
0.039198 0.017775 0.009753
|
||||
0.039198 0.019099 -0.004532
|
||||
0.039198 0.015846 -0.011065
|
||||
0.039198 0.010452 -0.015982
|
||||
0.039198 -0.01338 0.015577
|
||||
0.039198 -0.017778 0.009753
|
||||
0.039198 -0.019775 0.002735
|
||||
0.039198 -0.010456 -0.015982
|
||||
0.039198 -0.019102 -0.004532
|
||||
0.039198 -0.019775 0.002735
|
||||
0.039198 -0.015849 -0.011065
|
||||
|
||||
]
|
||||
}
|
||||
coordIndex [
|
||||
0 1 2 -1
|
||||
2 1 3 -1
|
||||
1 4 3 -1
|
||||
1 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
6 8 9 -1
|
||||
10 11 9 -1
|
||||
9 11 12 -1
|
||||
11 13 12 -1
|
||||
12 13 14 -1
|
||||
13 15 14 -1
|
||||
14 15 16 -1
|
||||
15 17 16 -1
|
||||
16 17 18 -1
|
||||
17 19 20 -1
|
||||
20 19 21 -1
|
||||
22 23 21 -1
|
||||
21 23 24 -1
|
||||
23 25 24 -1
|
||||
24 25 26 -1
|
||||
25 27 26 -1
|
||||
26 27 28 -1
|
||||
27 29 28 -1
|
||||
28 29 30 -1
|
||||
31 32 33 -1
|
||||
33 32 34 -1
|
||||
32 35 34 -1
|
||||
32 36 35 -1
|
||||
36 37 35 -1
|
||||
35 37 38 -1
|
||||
37 0 38 -1
|
||||
38 0 2 -1
|
||||
39 40 41 -1
|
||||
42 40 39 -1
|
||||
42 43 40 -1
|
||||
44 43 42 -1
|
||||
44 45 43 -1
|
||||
46 45 44 -1
|
||||
46 21 45 -1
|
||||
47 21 46 -1
|
||||
47 20 21 -1
|
||||
48 20 47 -1
|
||||
48 49 20 -1
|
||||
50 49 48 -1
|
||||
50 51 49 -1
|
||||
52 51 50 -1
|
||||
52 53 51 -1
|
||||
54 8 55 -1
|
||||
1 8 54 -1
|
||||
1 56 8 -1
|
||||
0 56 1 -1
|
||||
0 57 56 -1
|
||||
37 57 0 -1
|
||||
37 58 57 -1
|
||||
59 58 37 -1
|
||||
59 17 58 -1
|
||||
60 17 59 -1
|
||||
60 19 17 -1
|
||||
61 19 60 -1
|
||||
61 62 19 -1
|
||||
63 62 64 -1
|
||||
63 65 62 -1
|
||||
]
|
||||
texCoord TextureCoordinate {
|
||||
point [
|
||||
0.06276 0.50059
|
||||
0.06364 0.50049
|
||||
0.06213 0.47946
|
||||
0.06347 0.48076
|
||||
0.06478 0.48212
|
||||
0.06476 0.50081
|
||||
0.0662 0.48345
|
||||
0.06594 0.50155
|
||||
0.06711 0.50268
|
||||
0.06777 0.48461
|
||||
0.06711 0.50268
|
||||
0.06826 0.50415
|
||||
0.06943 0.48544
|
||||
0.06933 0.50585
|
||||
0.07112 0.48586
|
||||
0.0703 0.50763
|
||||
0.07279 0.48587
|
||||
0.07116 0.50928
|
||||
0.0744 0.48551
|
||||
0.07198 0.5107
|
||||
0.0744 0.48551
|
||||
0.07589 0.48492
|
||||
0.07198 0.5107
|
||||
0.07283 0.51146
|
||||
0.0772 0.48426
|
||||
0.07559 0.51122
|
||||
0.07843 0.48347
|
||||
0.07831 0.51137
|
||||
0.07942 0.48251
|
||||
0.08096 0.51191
|
||||
0.08009 0.48134
|
||||
0.0593 0.50892
|
||||
0.06137 0.50416
|
||||
0.05095 0.48318
|
||||
0.05354 0.4822
|
||||
0.05619 0.48131
|
||||
0.06162 0.50164
|
||||
0.06208 0.50104
|
||||
0.05909 0.48027
|
||||
0.07632 0.4795
|
||||
0.07942 0.48251
|
||||
0.08009 0.48134
|
||||
0.07176 0.47832
|
||||
0.07843 0.48347
|
||||
0.06684 0.47826
|
||||
0.0772 0.48426
|
||||
0.06213 0.47946
|
||||
0.06347 0.48076
|
||||
0.06478 0.48212
|
||||
0.07279 0.48587
|
||||
0.0662 0.48345
|
||||
0.07112 0.48586
|
||||
0.06777 0.48461
|
||||
0.06943 0.48544
|
||||
0.06476 0.50081
|
||||
0.06594 0.50155
|
||||
0.06826 0.50415
|
||||
0.06933 0.50585
|
||||
0.0703 0.50763
|
||||
0.06162 0.50164
|
||||
0.06137 0.50416
|
||||
0.0593 0.50892
|
||||
0.07283 0.51146
|
||||
0.07831 0.51137
|
||||
0.08096 0.51191
|
||||
0.07559 0.51122
|
||||
|
||||
]
|
||||
}
|
||||
texCoordIndex [
|
||||
0 1 2 -1
|
||||
2 1 3 -1
|
||||
1 4 3 -1
|
||||
1 5 4 -1
|
||||
5 6 4 -1
|
||||
5 7 6 -1
|
||||
7 8 6 -1
|
||||
6 8 9 -1
|
||||
10 11 9 -1
|
||||
9 11 12 -1
|
||||
11 13 12 -1
|
||||
12 13 14 -1
|
||||
13 15 14 -1
|
||||
14 15 16 -1
|
||||
15 17 16 -1
|
||||
16 17 18 -1
|
||||
17 19 20 -1
|
||||
20 19 21 -1
|
||||
22 23 21 -1
|
||||
21 23 24 -1
|
||||
23 25 24 -1
|
||||
24 25 26 -1
|
||||
25 27 26 -1
|
||||
26 27 28 -1
|
||||
27 29 28 -1
|
||||
28 29 30 -1
|
||||
31 32 33 -1
|
||||
33 32 34 -1
|
||||
32 35 34 -1
|
||||
32 36 35 -1
|
||||
36 37 35 -1
|
||||
35 37 38 -1
|
||||
37 0 38 -1
|
||||
38 0 2 -1
|
||||
39 40 41 -1
|
||||
42 40 39 -1
|
||||
42 43 40 -1
|
||||
44 43 42 -1
|
||||
44 45 43 -1
|
||||
46 45 44 -1
|
||||
46 21 45 -1
|
||||
47 21 46 -1
|
||||
47 20 21 -1
|
||||
48 20 47 -1
|
||||
48 49 20 -1
|
||||
50 49 48 -1
|
||||
50 51 49 -1
|
||||
52 51 50 -1
|
||||
52 53 51 -1
|
||||
54 8 55 -1
|
||||
1 8 54 -1
|
||||
1 56 8 -1
|
||||
0 56 1 -1
|
||||
0 57 56 -1
|
||||
37 57 0 -1
|
||||
37 58 57 -1
|
||||
59 58 37 -1
|
||||
59 17 58 -1
|
||||
60 17 59 -1
|
||||
60 19 17 -1
|
||||
61 19 60 -1
|
||||
61 62 19 -1
|
||||
63 62 64 -1
|
||||
63 65 62 -1
|
||||
]
|
||||
creaseAngle 1
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
52
simulation/atlas/protos/LUglutSolid.proto
Normal file
52
simulation/atlas/protos/LUglutSolid.proto
Normal file
|
@ -0,0 +1,52 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LUglutSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LUglutMesh {
|
||||
}
|
||||
]
|
||||
name "LUglut"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation 0 0 0
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.019096
|
||||
height 0.078396
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation 0 0 0
|
||||
rotation 1.0 0.0 0.0 1.57
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.019841
|
||||
height 0.080842
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 0.5166
|
||||
centerOfMass 0.00529262 -0.00344732 0.00313046
|
||||
inertiaMatrix [0.00074276 0.000688179 0.00041242, -3.79607e-08 -2.79549e-05 -3.2735e-08 ]
|
||||
}
|
||||
}
|
||||
}
|
3876
simulation/atlas/protos/LUlegMesh.proto
Normal file
3876
simulation/atlas/protos/LUlegMesh.proto
Normal file
File diff suppressed because it is too large
Load Diff
72
simulation/atlas/protos/LUlegSolid.proto
Normal file
72
simulation/atlas/protos/LUlegSolid.proto
Normal file
|
@ -0,0 +1,72 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LUlegSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LUlegMesh {
|
||||
}
|
||||
]
|
||||
name "LUleg"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation -0.0179 0.02085 -0.13
|
||||
rotation 1.0 0.0 0.0 1.57
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.1
|
||||
height 0.10
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation -0.03 0.01 -0.23
|
||||
rotation 0.97789509712 -0.147912128259 0.147794388741 1.59235120797
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.07
|
||||
height 0.15
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation -0.005 0.01 -0.23
|
||||
rotation 0.97789509712 0.147912128259 -0.147794388741 1.59235120797
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.07
|
||||
height 0.15
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation -0.02 0.03 -0.23
|
||||
rotation 1.0 0.0 0.0 1.32
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.07
|
||||
height 0.15
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 7.34
|
||||
centerOfMass 0 0 -0.21
|
||||
inertiaMatrix [0.09 0.09 0.02, 0 0 0 ]
|
||||
}
|
||||
}
|
||||
}
|
1187
simulation/atlas/protos/LtorsoMesh.proto
Normal file
1187
simulation/atlas/protos/LtorsoMesh.proto
Normal file
File diff suppressed because it is too large
Load Diff
35
simulation/atlas/protos/LtorsoSolid.proto
Normal file
35
simulation/atlas/protos/LtorsoSolid.proto
Normal file
|
@ -0,0 +1,35 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO LtorsoSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
LtorsoMesh {
|
||||
}
|
||||
]
|
||||
name "Ltorso"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Sphere {
|
||||
radius 0.01
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 1.92
|
||||
centerOfMass -0.0112984 -3.15366e-06 0.0746835
|
||||
inertiaMatrix [0.0039092 0.00341694 0.00174492, -5.04491e-08 -0.000342157 4.87119e-07 ]
|
||||
}
|
||||
}
|
||||
}
|
3540
simulation/atlas/protos/MtorsoMesh.proto
Normal file
3540
simulation/atlas/protos/MtorsoMesh.proto
Normal file
File diff suppressed because it is too large
Load Diff
62
simulation/atlas/protos/MtorsoSolid.proto
Normal file
62
simulation/atlas/protos/MtorsoSolid.proto
Normal file
|
@ -0,0 +1,62 @@
|
|||
#VRML_SIM R2021a utf8
|
||||
# license: Copyright Cyberbotics Ltd. Licensed for use only with Webots.
|
||||
# license url: https://cyberbotics.com/webots_assets_license
|
||||
# tags: hidden
|
||||
# Extracted from:
|
||||
# https://bitbucket.org/osrf/drcsim/src/c69ecab26a55/ros/atlas_description/urdf/atlas_simple_shapes.urdf
|
||||
|
||||
PROTO MtorsoSolid [
|
||||
field SFVec3f translation 0 0 0
|
||||
field SFRotation rotation 0 1 0 0
|
||||
]
|
||||
{
|
||||
Solid {
|
||||
translation IS translation
|
||||
rotation IS rotation
|
||||
children [
|
||||
MtorsoMesh {
|
||||
}
|
||||
]
|
||||
name "Mtorso"
|
||||
boundingObject Group {
|
||||
children [
|
||||
Transform {
|
||||
translation 0 0 0
|
||||
rotation 1.0 0.0 0.0 3.14079632679
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.017
|
||||
height 0.03
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation 0.0285 0 0.05
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.015
|
||||
height 0.02
|
||||
}
|
||||
]
|
||||
}
|
||||
Transform {
|
||||
translation -0.0285 0 0.05
|
||||
rotation 0.577196954996 0.577656775505 -0.577196954996 2.09393540394
|
||||
children [
|
||||
Cylinder {
|
||||
radius 0.015
|
||||
height 0.02
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
physics Physics {
|
||||
density -1
|
||||
mass 0.55
|
||||
centerOfMass -0.00816266 -0.0131245 0.0305974
|
||||
inertiaMatrix [0.000454181 0.000483282 0.000444215, -6.10764e-05 3.94009e-05 5.27463e-05 ]
|
||||
}
|
||||
}
|
||||
}
|
3381
simulation/atlas/protos/PelvisMesh.proto
Normal file
3381
simulation/atlas/protos/PelvisMesh.proto
Normal file
File diff suppressed because it is too large
Load Diff
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user