Last active
May 6, 2019 14:04
-
-
Save ejalaa12/dc5edb5d33f13781141fb6d75224afed to your computer and use it in GitHub Desktop.
Trying to understand RViz mesh color bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import rospy | |
| from geometry_msgs.msg import Vector3 | |
| from visualization_msgs.msg import Marker, MarkerArray | |
| from std_msgs.msg import ColorRGBA | |
| id_counter = 0 | |
| offset = 5 | |
| pose_start = 0 | |
| def update_marker_stamp(marker): | |
| marker.header.stamp = rospy.Time.now() | |
| def create_mesh_marker(mesh_path, frame_id, use_mat=True): | |
| global id_counter, offset, pose_start | |
| marker = Marker() | |
| marker.id = id_counter | |
| marker.type = marker.MESH_RESOURCE | |
| marker.header.frame_id = frame_id | |
| marker.mesh_resource = mesh_path | |
| marker.mesh_use_embedded_materials = use_mat | |
| marker.frame_locked = True | |
| marker.scale = Vector3(1, 1, 1) | |
| marker.pose.orientation.w = 1 | |
| marker.pose.position.x = pose_start | |
| id_counter += 1 | |
| pose_start += offset | |
| return marker | |
| # ===================================================================================== | |
| # The COLLADA file contains two meshes: a red cube and a sphere with chessboard texture | |
| # ===================================================================================== | |
| # Mesh 1: use_embedded_materials=False, color=(0,0,0,1) | |
| # ----> expected: Black Cube and Black Sphere | |
| mesh1 = create_mesh_marker('file:///home/ejalaa/Dev/quick/pub_dae_rviz/test.dae', 'world', False) | |
| mesh1.color.a = 0.5 | |
| # Mesh 2: use_embedded_materials=False, color=(0,0,1,1) (=blue) | |
| # ----> expected: Blue Cube, Blue Sphere | |
| mesh2 = create_mesh_marker('file:///home/ejalaa/Dev/quick/pub_dae_rviz/test.dae', 'world', False) | |
| mesh2.color = ColorRGBA(0,0,1,0.5) | |
| # Mesh3: use_embedded_materials=True, color=(0,0,0,0) | |
| # ----> expected: Red Cube, Sphere with Chessboard | |
| mesh3 = create_mesh_marker('file:///home/ejalaa/Dev/quick/pub_dae_rviz/test.dae', 'world', True) | |
| mesh3.color = ColorRGBA(0,0,0,0) | |
| # Mesh4: use_embedded_materials=True, color=(0,0,0,0.5) | |
| # ----> expected: Red Cube, Sphere with Chessboard | |
| mesh4 = create_mesh_marker('file:///home/ejalaa/Dev/quick/pub_dae_rviz/test.dae', 'world', True) | |
| mesh4.color = ColorRGBA(0,0,0,1) | |
| # Mesh5: use_embedded_materials=True, color=(0,0,1,0) | |
| # ----> expected: Red Cube, Sphere with chessboard | |
| mesh5 = create_mesh_marker('file:///home/ejalaa/Dev/quick/pub_dae_rviz/test.dae', 'world', True) | |
| mesh5.color = ColorRGBA(0,0,1,0) | |
| # Mesh6: use_embedded_materials=True, color=(0,0,1,1) | |
| # ----> expected: Purple Cube, Sphere with chessboard tinted Blue | |
| mesh6 = create_mesh_marker('file:///home/ejalaa/Dev/quick/pub_dae_rviz/test.dae', 'world', True) | |
| mesh6.color = ColorRGBA(0,0,1,0.5) | |
| # ================================================================================ | |
| # Node publication | |
| # ================================================================================ | |
| rospy.init_node('pub_rviz_marker') | |
| rate = rospy.Rate(1) | |
| pub = rospy.Publisher('markers', MarkerArray, queue_size=1) | |
| markers = MarkerArray() | |
| markers.markers = [mesh1, mesh2, mesh3, mesh4, mesh5, mesh6] | |
| while not rospy.is_shutdown(): | |
| for marker in markers.markers: | |
| update_marker_stamp(marker) | |
| pub.publish(markers) | |
| rate.sleep() |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <COLLADA xmlns="http://www.collada.org/2005/11/COLLADASchema" version="1.4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> | |
| <asset> | |
| <contributor> | |
| <author>Blender User</author> | |
| <authoring_tool>Blender 2.80.48 commit date:2019-03-13, commit time:00:20, hash:bf9904ec8018</authoring_tool> | |
| </contributor> | |
| <created>2019-05-06T15:31:26</created> | |
| <modified>2019-05-06T15:31:26</modified> | |
| <unit name="meter" meter="1"/> | |
| <up_axis>Z_UP</up_axis> | |
| </asset> | |
| <library_effects> | |
| <effect id="Material_002-effect"> | |
| <profile_COMMON> | |
| <newparam sid="chessboard_colored_jpg-surface"> | |
| <surface type="2D"> | |
| <init_from>chessboard_colored_jpg</init_from> | |
| </surface> | |
| </newparam> | |
| <newparam sid="chessboard_colored_jpg-sampler"> | |
| <sampler2D> | |
| <source>chessboard_colored_jpg-surface</source> | |
| </sampler2D> | |
| </newparam> | |
| <technique sid="common"> | |
| <lambert> | |
| <diffuse> | |
| <texture texture="chessboard_colored_jpg-sampler" texcoord="UVMap"/> | |
| </diffuse> | |
| <reflectivity> | |
| <float sid="specular">0.5</float> | |
| </reflectivity> | |
| </lambert> | |
| </technique> | |
| </profile_COMMON> | |
| </effect> | |
| <effect id="Material_001-effect"> | |
| <profile_COMMON> | |
| <newparam sid="chessboard_jpg-surface"> | |
| <surface type="2D"> | |
| <init_from>chessboard_jpg</init_from> | |
| </surface> | |
| </newparam> | |
| <newparam sid="chessboard_jpg-sampler"> | |
| <sampler2D> | |
| <source>chessboard_jpg-surface</source> | |
| </sampler2D> | |
| </newparam> | |
| <technique sid="common"> | |
| <lambert> | |
| <diffuse> | |
| <texture texture="chessboard_jpg-sampler" texcoord="UVMap"/> | |
| </diffuse> | |
| <reflectivity> | |
| <float sid="specular">0.5</float> | |
| </reflectivity> | |
| </lambert> | |
| </technique> | |
| </profile_COMMON> | |
| </effect> | |
| <effect id="Material-effect"> | |
| <profile_COMMON> | |
| <technique sid="common"> | |
| <lambert> | |
| <diffuse> | |
| <color sid="diffuse">0.8000001 0 0.00131331 1</color> | |
| </diffuse> | |
| <reflectivity> | |
| <float sid="specular">0.5</float> | |
| </reflectivity> | |
| </lambert> | |
| </technique> | |
| </profile_COMMON> | |
| </effect> | |
| </library_effects> | |
| <library_images> | |
| <image id="chessboard_colored_jpg" name="chessboard_colored_jpg"> | |
| <init_from>chessboard_colored.jpg</init_from> | |
| </image> | |
| <image id="chessboard_jpg" name="chessboard_jpg"> | |
| <init_from>chessboard.jpg</init_from> | |
| </image> | |
| </library_images> | |
| <library_materials> | |
| <material id="Material_002-material" name="Material.002"> | |
| <instance_effect url="#Material_002-effect"/> | |
| </material> | |
| <material id="Material_001-material" name="Material.001"> | |
| <instance_effect url="#Material_001-effect"/> | |
| </material> | |
| <material id="Material-material" name="Material"> | |
| <instance_effect url="#Material-effect"/> | |
| </material> | |
| </library_materials> | |
| <library_geometries> | |
| <geometry id="Sphere_001-mesh" name="Sphere.001"> | |
| <mesh> | |
| <source id="Sphere_001-mesh-positions"> | |
| <float_array id="Sphere_001-mesh-positions-array" count="1446">0 0.1950903 0.9807853 0 0.3826835 0.9238795 0 0.5555703 0.8314696 0 0.7071068 0.7071068 0 0.8314697 0.5555702 0 0.9238795 0.3826834 0 0.9807853 0.1950903 0 1 0 0 0.9807853 -0.1950902 0 0.5555702 -0.8314697 0.03806024 0.1913417 0.9807853 0.07465791 0.3753303 0.9238795 0.1083864 0.5448951 0.8314696 0.1379497 0.6935199 0.7071068 0.1622117 0.8154932 0.5555702 0.18024 0.9061274 0.3826834 0.1913418 0.9619397 0.1950903 0.1950904 0.9807853 0 0.1913418 0.9619398 -0.1950902 0.18024 0.9061275 -0.3826833 0.1622117 0.8154932 -0.5555702 0.1379497 0.6935199 -0.7071068 0.1083864 0.5448951 -0.8314697 0.07465785 0.3753301 -0.9238796 0.03806024 0.1913415 -0.9807853 0.07465791 0.1802399 0.9807853 0.1464467 0.3535534 0.9238795 0.2126076 0.5132799 0.8314696 0.2705982 0.6532814 0.7071068 0.3181897 0.7681777 0.5555702 0.3535535 0.8535533 0.3826834 0.3753304 0.9061273 0.1950903 0.3826835 0.9238795 0 0.3753304 0.9061273 -0.1950902 0.3535535 0.8535534 -0.3826833 0.3181897 0.7681777 -0.5555702 0.2705982 0.6532814 -0.7071068 0.2126076 0.5132799 -0.8314697 0.1464467 0.3535532 -0.9238796 0.07465785 0.1802397 -0.9807853 0.1083865 0.1622116 0.9807853 0.2126077 0.3181896 0.9238795 0.3086584 0.4619397 0.8314696 0.3928477 0.5879377 0.7071068 0.4619399 0.6913416 0.5555702 0.5132801 0.7681776 0.3826834 0.5448952 0.815493 0.1950903 0.5555704 0.8314695 0 0.5448952 0.815493 -0.1950902 0.5132801 0.7681777 -0.3826833 0.4619399 0.6913416 -0.5555702 0.3928477 0.5879377 -0.7071068 0.3086584 0.4619396 -0.8314697 0.2126076 0.3181895 -0.9238796 0.1083864 0.1622114 -0.9807853 0.1379499 0.1379496 0.9807853 0.2705983 0.2705979 0.9238795 0.3928477 0.3928474 0.8314696 0.5000002 0.4999999 0.7071068 0.587938 0.5879377 0.5555702 0.6532816 0.6532813 0.3826834 0.6935201 0.6935197 0.1950903 0.707107 0.7071066 0 0.6935201 0.6935197 -0.1950902 0.6532816 0.6532814 -0.3826833 0.587938 0.5879377 -0.5555702 0.5000002 0.4999999 -0.7071068 0.3928477 0.3928473 -0.8314697 0.2705982 0.2705979 -0.9238796 0.1379497 0.1379494 -0.9807853 0.1622119 0.1083862 0.9807853 0.3181899 0.2126074 0.9238795 0.46194 0.3086581 0.8314696 0.587938 0.3928473 0.7071068 0.6913419 0.4619396 0.5555702 0.7681779 0.5132798 0.3826834 0.8154933 0.5448948 0.1950903 0.8314698 0.55557 0 0.8154933 0.5448948 -0.1950902 0.7681779 0.5132799 -0.3826833 0.6913419 0.4619396 -0.5555702 0.587938 0.3928473 -0.7071068 0.4619399 0.3086581 -0.8314697 0.3181898 0.2126073 -0.9238796 0.1622117 0.1083861 -0.9807853 0.1802402 0.07465761 0.9807853 0.3535537 0.1464464 0.9238795 0.5132802 0.2126073 0.8314696 0.6532817 0.2705978 0.7071068 0.768178 0.3181894 0.5555702 0.8535535 0.3535532 0.3826834 0.9061275 0.3753299 0.1950903 0.9238798 0.3826832 0 0.9061275 0.3753299 -0.1950902 0.8535535 0.3535532 -0.3826833 0.768178 0.3181894 -0.5555702 0.6532817 0.2705978 -0.7071068 0.5132802 0.2126072 -0.8314697 0.3535535 0.1464464 -0.9238796 0.18024 0.07465755 -0.9807853 0.191342 0.03805994 0.9807853 0.3753306 0.07465755 0.9238795 0.5448954 0.1083861 0.8314696 0.6935201 0.1379494 0.7071068 0.8154934 0.1622114 0.5555702 0.9061276 0.1802397 0.3826834 0.9619398 0.1913413 0.1950903 0.9807855 0.1950899 0 0.9619398 0.1913413 -0.1950902 0.9061276 0.1802397 -0.3826833 0.8154934 0.1622114 -0.5555702 0.6935201 0.1379494 -0.7071068 0.5448953 0.108386 -0.8314697 0.3753304 0.07465755 -0.9238796 0.1913417 0.03805989 -0.9807853 0.1950906 -3.26636e-7 0.9807853 0.3826837 -3.19185e-7 0.9238795 0.5555705 -3.11735e-7 0.8314696 0.707107 -3.19185e-7 0.7071068 0.8314698 -3.34087e-7 0.5555702 0.9238797 -2.74482e-7 0.3826834 0.9807853 -3.93691e-7 0.1950903 1 -3.7879e-7 0 0.9807853 -3.93691e-7 -0.1950902 0.9238797 -2.29778e-7 -0.3826833 0.8314698 -3.34087e-7 -0.5555702 0.707107 -3.19185e-7 -0.7071068 0.5555704 -3.41537e-7 -0.8314697 0.3826835 -3.04284e-7 -0.9238796 0.1950904 -3.08009e-7 -0.9807853 0.1913419 -0.0380606 0.9807853 0.3753305 -0.07465821 0.9238795 0.5448954 -0.1083867 0.8314696 0.6935201 -0.13795 0.7071068 0.8154933 -0.162212 0.5555702 0.9061276 -0.1802402 0.3826834 0.9619397 -0.1913421 0.1950903 0.9807855 -0.1950907 0 0.9619397 -0.1913421 -0.1950902 0.9061276 -0.1802402 -0.3826833 0.8154933 -0.162212 -0.5555702 0.6935201 -0.13795 -0.7071068 0.5448952 -0.1083867 -0.8314697 0.3753304 -0.07465815 -0.9238796 0.1913417 -0.03806054 -0.9807853 0.1802402 -0.07465827 0.9807853 0.3535536 -0.146447 0.9238795 0.5132802 -0.2126079 0.8314696 0.6532816 -0.2705984 0.7071068 0.7681778 -0.31819 0.5555702 0.8535535 -0.3535537 0.3826834 0.9061273 -0.3753306 0.1950903 0.9238797 -0.3826839 0 0.9061273 -0.3753306 -0.1950902 0.8535535 -0.3535537 -0.3826833 0.7681778 -0.31819 -0.5555702 0.6532816 -0.2705984 -0.7071068 0.51328 -0.2126079 -0.8314697 0.3535535 -0.146447 -0.9238796 0.18024 -0.07465815 -0.9807853 0.1622118 -0.1083868 0.9807853 0.3181899 -0.2126079 0.9238795 0.4619399 -0.3086587 0.8314696 0.587938 -0.3928478 0.7071068 0.6913418 -0.4619402 0.5555702 0.7681779 -0.5132803 0.3826834 0.8154931 -0.5448954 0.1950903 0.8314697 -0.5555707 0 0.8154931 -0.5448954 -0.1950902 0.7681779 -0.5132803 -0.3826833 0.6913418 -0.4619402 -0.5555702 0.587938 -0.3928478 -0.7071068 0.4619398 -0.3086587 -0.8314697 0.3181897 -0.2126079 -0.9238796 0.1622117 -0.1083867 -0.9807853 0.1379498 -0.1379502 0.9807853 0.2705982 -0.2705985 0.9238795 0.3928476 -0.3928479 0.8314696 0.5000001 -0.5000004 0.7071068 0.5879378 -0.5879382 0.5555702 0.6532816 -0.6532818 0.3826834 0.6935198 -0.6935202 0.1950903 0.7071068 -0.7071073 0 0.6935198 -0.6935202 -0.1950902 0.6532816 -0.6532818 -0.3826833 0.5879378 -0.5879382 -0.5555702 0.5000001 -0.5000004 -0.7071068 0.3928475 -0.3928478 -0.8314697 0.2705981 -0.2705984 -0.9238796 0.1379497 -0.13795 -0.9807853 0.1083865 -0.1622121 0.9807853 0.2126076 -0.3181901 0.9238795 0.3086584 -0.4619402 0.8314696 0.3928475 -0.5879382 0.7071068 0.4619397 -0.6913421 0.5555702 0.5132801 -0.7681781 0.3826834 0.544895 -0.8154934 0.1950903 0.5555703 -0.8314701 0 0.544895 -0.8154934 -0.1950902 0.5132801 -0.7681781 -0.3826833 0.4619397 -0.6913421 -0.5555702 0.3928475 -0.5879382 -0.7071068 0.3086583 -0.4619401 -0.8314697 0.2126075 -0.31819 -0.9238796 0.1083863 -0.162212 -0.9807853 0 -3.25841e-7 -1 0.07465791 -0.1802405 0.9807853 0.1464467 -0.3535538 0.9238795 0.2126076 -0.5132804 0.8314696 0.270598 -0.6532818 0.7071068 0.3181896 -0.7681781 0.5555702 0.3535535 -0.8535537 0.3826834 0.3753302 -0.9061276 0.1950903 0.3826834 -0.92388 0 0.3753302 -0.9061276 -0.1950902 0.3535535 -0.8535537 -0.3826833 0.3181896 -0.7681781 -0.5555702 0.270598 -0.6532818 -0.7071068 0.2126075 -0.5132803 -0.8314697 0.1464466 -0.3535537 -0.9238796 0.07465785 -0.1802403 -0.9807853 0.03806024 -0.1913422 0.9807853 0.07465785 -0.3753307 0.9238795 0.1083864 -0.5448955 0.8314696 0.1379497 -0.6935203 0.7071068 0.1622115 -0.8154934 0.5555702 0.18024 -0.9061278 0.3826834 0.1913416 -0.9619399 0.1950903 0.1950902 -0.9807857 0 0.1913416 -0.9619399 -0.1950902 0.18024 -0.9061278 -0.3826833 0.1622115 -0.8154934 -0.5555702 0.1379497 -0.6935203 -0.7071068 0.1083863 -0.5448954 -0.8314697 0.07465779 -0.3753306 -0.9238796 0.03806018 -0.191342 -0.9807853 0 -0.1950908 0.9807853 0 -0.3826838 0.9238795 0 -0.5555707 0.8314696 0 -0.7071071 0.7071068 0 -0.8314697 0.5555702 0 -0.9238799 0.3826834 0 -0.9807854 0.1950903 0 -1 0 0 -0.9807854 -0.1950902 0 -0.9238799 -0.3826833 0 -0.8314697 -0.5555702 0 -0.7071071 -0.7071068 0 -0.5555705 -0.8314697 0 -0.3826837 -0.9238796 0 -0.1950906 -0.9807853 -0.03806024 -0.1913422 0.9807853 -0.07465779 -0.3753306 0.9238795 -0.1083863 -0.5448955 0.8314696 -0.1379497 -0.6935202 0.7071068 -0.1622117 -0.8154932 0.5555702 -0.1802399 -0.9061278 0.3826834 -0.1913417 -0.9619398 0.1950903 -0.1950904 -0.9807856 0 -0.1913417 -0.9619398 -0.1950902 -0.1802399 -0.9061278 -0.3826833 -0.1622117 -0.8154932 -0.5555702 -0.1379497 -0.6935202 -0.7071068 -0.1083863 -0.5448954 -0.8314697 -0.07465779 -0.3753305 -0.9238796 -0.03806018 -0.191342 -0.9807853 -0.07465791 -0.1802404 0.9807853 -0.1464466 -0.3535537 0.9238795 -0.2126075 -0.5132804 0.8314696 -0.2705981 -0.6532818 0.7071068 -0.3181896 -0.7681778 0.5555702 -0.3535533 -0.8535537 0.3826834 -0.3753303 -0.9061275 0.1950903 -0.3826836 -0.9238798 0 -0.3753303 -0.9061275 -0.1950902 -0.3535533 -0.8535537 -0.3826833 -0.3181896 -0.7681778 -0.5555702 -0.2705981 -0.6532818 -0.7071068 -0.2126075 -0.5132802 -0.8314697 -0.1464465 -0.3535536 -0.9238796 -0.07465779 -0.1802402 -0.9807853 -0.1083865 -0.1622121 0.9807853 -0.2126075 -0.31819 0.9238795 -0.3086583 -0.4619402 0.8314696 -0.3928475 -0.5879381 0.7071068 -0.4619397 -0.6913417 0.5555702 -0.5132799 -0.7681781 0.3826834 -0.5448951 -0.8154932 0.1950903 -0.5555704 -0.8314698 0 -0.5448951 -0.8154932 -0.1950902 -0.5132799 -0.7681781 -0.3826833 -0.4619397 -0.6913417 -0.5555702 -0.3928475 -0.5879381 -0.7071068 -0.3086583 -0.46194 -0.8314697 -0.2126075 -0.3181899 -0.9238796 -0.1083863 -0.1622119 -0.9807853 -2.30405e-7 -5.56246e-7 1 -0.1379498 -0.1379501 0.9807853 -0.2705981 -0.2705984 0.9238795 -0.3928475 -0.3928478 0.8314696 -0.5 -0.5000002 0.7071068 -0.5879377 -0.5879378 0.5555702 -0.6532814 -0.6532818 0.3826834 -0.6935198 -0.6935199 0.1950903 -0.7071069 -0.707107 0 -0.6935198 -0.6935199 -0.1950902 -0.6532814 -0.6532818 -0.3826833 -0.5879377 -0.5879378 -0.5555702 -0.5 -0.5000002 -0.7071068 -0.3928474 -0.3928477 -0.8314697 -0.270598 -0.2705982 -0.9238796 -0.1379496 -0.13795 -0.9807853 -0.1622118 -0.1083868 0.9807853 -0.3181896 -0.2126078 0.9238795 -0.4619398 -0.3086586 0.8314696 -0.5879378 -0.3928477 0.7071068 -0.6913415 -0.4619398 0.5555702 -0.7681777 -0.5132803 0.3826834 -0.8154929 -0.5448951 0.1950903 -0.8314697 -0.5555704 0 -0.8154929 -0.5448951 -0.1950902 -0.7681777 -0.5132803 -0.3826833 -0.6913415 -0.4619398 -0.5555702 -0.5879378 -0.3928477 -0.7071068 -0.4619397 -0.3086585 -0.8314697 -0.3181896 -0.2126077 -0.9238796 -0.1622116 -0.1083866 -0.9807853 -0.18024 -0.07465821 0.9807853 -0.3535534 -0.1464468 0.9238795 -0.51328 -0.2126078 0.8314696 -0.6532815 -0.2705982 0.7071068 -0.7681775 -0.3181897 0.5555702 -0.8535534 -0.3535537 0.3826834 -0.9061272 -0.3753302 0.1950903 -0.9238795 -0.3826835 0 -0.9061272 -0.3753302 -0.1950902 -0.8535534 -0.3535537 -0.3826833 -0.7681775 -0.3181897 -0.5555702 -0.6532815 -0.2705982 -0.7071068 -0.5132799 -0.2126077 -0.8314697 -0.3535532 -0.1464468 -0.9238796 -0.1802399 -0.07465809 -0.9807853 -0.1913418 -0.03806054 0.9807853 -0.3753302 -0.07465809 0.9238795 -0.5448951 -0.1083866 0.8314696 -0.6935199 -0.1379498 0.7071068 -0.8154928 -0.1622117 0.5555702 -0.9061274 -0.1802402 0.3826834 -0.9619394 -0.1913417 0.1950903 -0.9807852 -0.1950904 0 -0.9619394 -0.1913417 -0.1950902 -0.9061274 -0.1802402 -0.3826833 -0.8154928 -0.1622117 -0.5555702 -0.6935199 -0.1379498 -0.7071068 -0.544895 -0.1083866 -0.8314697 -0.3753301 -0.07465803 -0.9238796 -0.1913416 -0.03806048 -0.9807853 -0.1950904 -3.11735e-7 0.9807853 -0.3826833 -2.81932e-7 0.9238795 -0.5555702 -2.81932e-7 0.8314696 -0.7071067 -1.85075e-7 0.7071068 -0.8314692 -1.40371e-7 0.5555702 -0.9238795 -3.19185e-7 0.3826834 -0.9807848 0 0.1950903 -0.9999998 -1.40371e-7 0 -0.9807848 0 -0.1950902 -0.9238795 -3.19185e-7 -0.3826833 -0.8314692 -1.40371e-7 -0.5555702 -0.7071067 -1.85075e-7 -0.7071068 -0.5555701 -2.59581e-7 -0.8314697 -0.3826832 -2.5213e-7 -0.9238796 -0.1950902 -3.1546e-7 -0.9807853 -0.1913418 0.03805994 0.9807853 -0.3753302 0.07465749 0.9238795 -0.5448951 0.108386 0.8314696 -0.6935198 0.1379495 0.7071068 -0.8154927 0.1622114 0.5555702 -0.9061273 0.1802396 0.3826834 -0.9619392 0.1913415 0.1950903 -0.980785 0.1950901 0 -0.9619392 0.1913415 -0.1950902 -0.9061273 0.1802396 -0.3826833 -0.8154927 0.1622114 -0.5555702 -0.6935198 0.1379495 -0.7071068 -0.5448949 0.108386 -0.8314697 -0.3753301 0.07465749 -0.9238796 -0.1913416 0.03805989 -0.9807853 -0.18024 0.07465755 0.9807853 -0.3535533 0.1464463 0.9238795 -0.5132799 0.2126072 0.8314696 -0.6532813 0.2705978 0.7071068 -0.7681773 0.3181893 0.5555702 -0.8535533 0.3535531 0.3826834 -0.9061269 0.37533 0.1950903 -0.9238792 0.3826832 0 -0.9061269 0.37533 -0.1950902 -0.8535533 0.3535531 -0.3826833 -0.7681773 0.3181893 -0.5555702 -0.6532813 0.2705978 -0.7071068 -0.5132797 0.2126072 -0.8314697 -0.3535532 0.1464462 -0.9238796 -0.1802399 0.07465744 -0.9807853 -0.1622117 0.1083861 0.9807853 -0.3181896 0.2126072 0.9238795 -0.4619396 0.308658 0.8314696 -0.5879377 0.3928472 0.7071068 -0.6913412 0.4619394 0.5555702 -0.7681776 0.5132796 0.3826834 -0.8154926 0.5448947 0.1950903 -0.8314692 0.55557 0 -0.8154926 0.5448947 -0.1950902 -0.7681776 0.5132796 -0.3826833 -0.6913412 0.4619394 -0.5555702 -0.5879377 0.3928472 -0.7071068 -0.4619395 0.3086579 -0.8314697 -0.3181895 0.2126072 -0.9238796 -0.1622116 0.108386 -0.9807853 -0.1379497 0.1379494 0.9807853 -0.2705979 0.2705977 0.9238795 -0.3928473 0.3928471 0.8314696 -0.4999998 0.4999997 0.7071068 -0.5879373 0.5879374 0.5555702 -0.6532814 0.6532811 0.3826834 -0.6935194 0.6935194 0.1950903 -0.7071064 0.7071064 0 -0.6935194 0.6935194 -0.1950902 -0.6532814 0.6532811 -0.3826833 -0.5879373 0.5879374 -0.5555702 -0.4999998 0.4999997 -0.7071068 -0.3928472 0.3928471 -0.8314697 -0.2705979 0.2705976 -0.9238796 -0.1379496 0.1379493 -0.9807853 -0.1083864 0.1622114 0.9807853 -0.2126074 0.3181893 0.9238795 -0.3086581 0.4619394 0.8314696 -0.3928473 0.5879375 0.7071068 -0.4619393 0.6913412 0.5555702 -0.5132799 0.7681773 0.3826834 -0.5448946 0.8154925 0.1950903 -0.5555698 0.8314691 0 -0.5448946 0.8154925 -0.1950902 -0.5132799 0.7681773 -0.3826833 -0.4619393 0.6913412 -0.5555702 -0.3928473 0.5879375 -0.7071068 -0.3086581 0.4619393 -0.8314697 -0.2126073 0.3181892 -0.9238796 -0.1083863 0.1622112 -0.9807853 -0.07465785 0.1802397 0.9807853 -0.1464465 0.353553 0.9238795 -0.2126073 0.5132796 0.8314696 -0.2705979 0.6532812 0.7071068 -0.3181892 0.7681771 0.5555702 -0.3535533 0.8535529 0.3826834 -0.3753298 0.9061266 0.1950903 -0.382683 0.9238789 0 -0.3753298 0.9061266 -0.1950902 -0.3535533 0.8535529 -0.3826833 -0.3181892 0.7681771 -0.5555702 -0.2705979 0.6532812 -0.7071068 -0.2126073 0.5132794 -0.8314697 -0.1464465 0.3535529 -0.9238796 -0.07465779 0.1802396 -0.9807853 -0.03806018 0.1913415 0.9807853 -0.07465773 0.3753299 0.9238795 -0.1083862 0.5448946 0.8314696 -0.1379495 0.6935195 0.7071068 -0.1622113 0.8154924 0.5555702 -0.1802399 0.906127 0.3826834 -0.1913413 0.9619389 0.1950903 -0.1950899 0.9807845 0 -0.1913413 0.9619389 -0.1950902 -0.1802399 0.906127 -0.3826833 -0.1622113 0.8154924 -0.5555702 -0.1379495 0.6935195 -0.7071068 -0.1083862 0.5448945 -0.8314697 -0.07465767 0.3753298 -0.9238796 -0.03806018 0.1913413 -0.9807853 0 0.923879 -0.3826833 2.72185e-7 0.8314688 -0.5555702 1.52975e-7 0.7071064 -0.7071068 0 0.3826829 -0.9238796 0 0.1950899 -0.9807853</float_array> | |
| <technique_common> | |
| <accessor source="#Sphere_001-mesh-positions-array" count="482" stride="3"> | |
| <param name="X" type="float"/> | |
| <param name="Y" type="float"/> | |
| <param name="Z" type="float"/> | |
| </accessor> | |
| </technique_common> | |
| </source> | |
| <source id="Sphere_001-mesh-normals"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

