koffi 0.9.5 → 0.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.txt +661 -0
- package/README.md +74 -9
- package/package.json +27 -7
- package/src/call.hh +2 -1
- package/src/call_arm32.cc +525 -0
- package/src/call_arm32_fwd.S +108 -0
- package/src/call_arm64.cc +90 -63
- package/src/call_arm64_fwd.S +24 -29
- package/src/call_x64_sysv.cc +61 -48
- package/src/call_x64_win.cc +69 -43
- package/src/call_x86.cc +83 -62
- package/src/ffi.cc +166 -37
- package/src/ffi.hh +43 -12
- package/src/util.cc +72 -32
- package/src/util.hh +127 -18
- package/test/files/node32.cmd +6 -0
- package/test/files/node64.cmd +6 -0
- package/test/registry/machines.json +185 -0
- package/test/registry/sha256sum.txt +24 -0
- package/test/test.js +625 -0
- package/test/tests/misc.c +40 -0
- package/test/tests/misc.js +54 -0
- package/test/tests/raylib.js +167 -0
- package/vendor/dragonbox/include/dragonbox/dragonbox.h +6 -2
- package/vendor/dragonbox/other_files/Dragonbox.pdf +0 -0
- package/vendor/libcc/libcc.cc +36 -18
- package/vendor/libcc/libcc.hh +23 -1
- package/vendor/raylib/BINDINGS.md +123 -0
- package/vendor/raylib/CHANGELOG +1495 -0
- package/vendor/raylib/CMakeLists.txt +33 -0
- package/vendor/raylib/CMakeOptions.txt +87 -0
- package/vendor/raylib/CONTRIBUTING.md +76 -0
- package/vendor/raylib/CONTRIBUTORS.md +63 -0
- package/vendor/raylib/CONVENTIONS.md +95 -0
- package/vendor/raylib/HISTORY.md +364 -0
- package/vendor/raylib/LICENSE +16 -0
- package/vendor/raylib/README.md +141 -0
- package/vendor/raylib/ROADMAP.md +76 -0
- package/vendor/raylib/SPONSORS.md +68 -0
- package/vendor/raylib/cmake/AddIfFlagCompiles.cmake +12 -0
- package/vendor/raylib/cmake/BuildOptions.cmake +18 -0
- package/vendor/raylib/cmake/CompileDefinitions.cmake +110 -0
- package/vendor/raylib/cmake/CompilerFlags.cmake +79 -0
- package/vendor/raylib/cmake/EnumOption.cmake +9 -0
- package/vendor/raylib/cmake/GlfwImport.cmake +34 -0
- package/vendor/raylib/cmake/InstallConfigurations.cmake +29 -0
- package/vendor/raylib/cmake/JoinPaths.cmake +26 -0
- package/vendor/raylib/cmake/LibraryConfigurations.cmake +108 -0
- package/vendor/raylib/cmake/LibraryPathToLinkerFlags.cmake +24 -0
- package/vendor/raylib/cmake/PackConfigurations.cmake +13 -0
- package/vendor/raylib/cmake/PopulateConfigVariablesLocally.cmake +11 -0
- package/vendor/raylib/cmake/raylib-config-version.cmake +21 -0
- package/vendor/raylib/cmake/raylib-config.cmake +76 -0
- package/vendor/raylib/examples/CMakeLists.txt +139 -0
- package/vendor/raylib/examples/Makefile +565 -0
- package/vendor/raylib/examples/Makefile.Android +405 -0
- package/vendor/raylib/examples/Makefile.Web +1053 -0
- package/vendor/raylib/examples/README.md +203 -0
- package/vendor/raylib/examples/audio/audio_module_playing.c +146 -0
- package/vendor/raylib/examples/audio/audio_module_playing.png +0 -0
- package/vendor/raylib/examples/audio/audio_multichannel_sound.c +73 -0
- package/vendor/raylib/examples/audio/audio_multichannel_sound.png +0 -0
- package/vendor/raylib/examples/audio/audio_music_stream.c +93 -0
- package/vendor/raylib/examples/audio/audio_music_stream.png +0 -0
- package/vendor/raylib/examples/audio/audio_raw_stream.c +167 -0
- package/vendor/raylib/examples/audio/audio_raw_stream.png +0 -0
- package/vendor/raylib/examples/audio/audio_sound_loading.c +64 -0
- package/vendor/raylib/examples/audio/audio_sound_loading.png +0 -0
- package/vendor/raylib/examples/audio/resources/LICENSE.md +10 -0
- package/vendor/raylib/examples/audio/resources/coin.wav +0 -0
- package/vendor/raylib/examples/audio/resources/country.mp3 +0 -0
- package/vendor/raylib/examples/audio/resources/mini1111.xm +0 -0
- package/vendor/raylib/examples/audio/resources/sound.wav +0 -0
- package/vendor/raylib/examples/audio/resources/spring.wav +0 -0
- package/vendor/raylib/examples/audio/resources/target.flac +0 -0
- package/vendor/raylib/examples/audio/resources/target.ogg +0 -0
- package/vendor/raylib/examples/audio/resources/weird.wav +0 -0
- package/vendor/raylib/examples/build.zig +86 -0
- package/vendor/raylib/examples/core/core_2d_camera.c +132 -0
- package/vendor/raylib/examples/core/core_2d_camera.png +0 -0
- package/vendor/raylib/examples/core/core_2d_camera_platformer.c +293 -0
- package/vendor/raylib/examples/core/core_2d_camera_platformer.png +0 -0
- package/vendor/raylib/examples/core/core_2d_camera_smooth_pixelperfect.png +0 -0
- package/vendor/raylib/examples/core/core_3d_camera_first_person.c +97 -0
- package/vendor/raylib/examples/core/core_3d_camera_first_person.png +0 -0
- package/vendor/raylib/examples/core/core_3d_camera_free.c +83 -0
- package/vendor/raylib/examples/core/core_3d_camera_free.png +0 -0
- package/vendor/raylib/examples/core/core_3d_camera_mode.c +73 -0
- package/vendor/raylib/examples/core/core_3d_camera_mode.png +0 -0
- package/vendor/raylib/examples/core/core_3d_picking.c +107 -0
- package/vendor/raylib/examples/core/core_3d_picking.png +0 -0
- package/vendor/raylib/examples/core/core_basic_screen_manager.c +150 -0
- package/vendor/raylib/examples/core/core_basic_screen_manager.png +0 -0
- package/vendor/raylib/examples/core/core_basic_window.c +62 -0
- package/vendor/raylib/examples/core/core_basic_window.png +0 -0
- package/vendor/raylib/examples/core/core_basic_window_web.c +85 -0
- package/vendor/raylib/examples/core/core_custom_frame_control.c +125 -0
- package/vendor/raylib/examples/core/core_custom_frame_control.png +0 -0
- package/vendor/raylib/examples/core/core_custom_logging.c +84 -0
- package/vendor/raylib/examples/core/core_custom_logging.png +0 -0
- package/vendor/raylib/examples/core/core_drop_files.c +76 -0
- package/vendor/raylib/examples/core/core_drop_files.png +0 -0
- package/vendor/raylib/examples/core/core_input_gamepad.c +195 -0
- package/vendor/raylib/examples/core/core_input_gamepad.png +0 -0
- package/vendor/raylib/examples/core/core_input_gestures.c +115 -0
- package/vendor/raylib/examples/core/core_input_gestures.png +0 -0
- package/vendor/raylib/examples/core/core_input_keys.c +59 -0
- package/vendor/raylib/examples/core/core_input_keys.png +0 -0
- package/vendor/raylib/examples/core/core_input_mouse.c +65 -0
- package/vendor/raylib/examples/core/core_input_mouse.png +0 -0
- package/vendor/raylib/examples/core/core_input_mouse_wheel.c +58 -0
- package/vendor/raylib/examples/core/core_input_mouse_wheel.png +0 -0
- package/vendor/raylib/examples/core/core_input_multitouch.c +70 -0
- package/vendor/raylib/examples/core/core_input_multitouch.png +0 -0
- package/vendor/raylib/examples/core/core_loading_thread.c +147 -0
- package/vendor/raylib/examples/core/core_loading_thread.png +0 -0
- package/vendor/raylib/examples/core/core_quat_conversion.c +132 -0
- package/vendor/raylib/examples/core/core_quat_conversion.png +0 -0
- package/vendor/raylib/examples/core/core_random_values.c +67 -0
- package/vendor/raylib/examples/core/core_random_values.png +0 -0
- package/vendor/raylib/examples/core/core_scissor_test.c +71 -0
- package/vendor/raylib/examples/core/core_scissor_test.png +0 -0
- package/vendor/raylib/examples/core/core_smooth_pixelperfect.c +117 -0
- package/vendor/raylib/examples/core/core_smooth_pixelperfect.png +0 -0
- package/vendor/raylib/examples/core/core_split_screen.c +155 -0
- package/vendor/raylib/examples/core/core_split_screen.png +0 -0
- package/vendor/raylib/examples/core/core_storage_values.c +87 -0
- package/vendor/raylib/examples/core/core_storage_values.png +0 -0
- package/vendor/raylib/examples/core/core_vr_simulator.c +143 -0
- package/vendor/raylib/examples/core/core_vr_simulator.png +0 -0
- package/vendor/raylib/examples/core/core_window_flags.c +191 -0
- package/vendor/raylib/examples/core/core_window_flags.png +0 -0
- package/vendor/raylib/examples/core/core_window_letterbox.c +112 -0
- package/vendor/raylib/examples/core/core_window_letterbox.png +0 -0
- package/vendor/raylib/examples/core/core_world_screen.c +78 -0
- package/vendor/raylib/examples/core/core_world_screen.png +0 -0
- package/vendor/raylib/examples/core/resources/LICENSE.md +4 -0
- package/vendor/raylib/examples/core/resources/distortion100.fs +52 -0
- package/vendor/raylib/examples/core/resources/distortion330.fs +53 -0
- package/vendor/raylib/examples/core/resources/ps3.png +0 -0
- package/vendor/raylib/examples/core/resources/xbox.png +0 -0
- package/vendor/raylib/examples/examples_template.c +100 -0
- package/vendor/raylib/examples/models/models_animation.c +114 -0
- package/vendor/raylib/examples/models/models_animation.png +0 -0
- package/vendor/raylib/examples/models/models_billboard.c +75 -0
- package/vendor/raylib/examples/models/models_billboard.png +0 -0
- package/vendor/raylib/examples/models/models_box_collisions.c +121 -0
- package/vendor/raylib/examples/models/models_box_collisions.png +0 -0
- package/vendor/raylib/examples/models/models_cubicmap.c +87 -0
- package/vendor/raylib/examples/models/models_cubicmap.png +0 -0
- package/vendor/raylib/examples/models/models_first_person_maze.c +122 -0
- package/vendor/raylib/examples/models/models_first_person_maze.png +0 -0
- package/vendor/raylib/examples/models/models_geometric_shapes.c +80 -0
- package/vendor/raylib/examples/models/models_geometric_shapes.png +0 -0
- package/vendor/raylib/examples/models/models_heightmap.c +82 -0
- package/vendor/raylib/examples/models/models_heightmap.png +0 -0
- package/vendor/raylib/examples/models/models_loading.c +146 -0
- package/vendor/raylib/examples/models/models_loading.png +0 -0
- package/vendor/raylib/examples/models/models_loading_gltf.c +105 -0
- package/vendor/raylib/examples/models/models_loading_gltf.png +0 -0
- package/vendor/raylib/examples/models/models_loading_vox.c +130 -0
- package/vendor/raylib/examples/models/models_loading_vox.png +0 -0
- package/vendor/raylib/examples/models/models_mesh_generation.c +179 -0
- package/vendor/raylib/examples/models/models_mesh_generation.png +0 -0
- package/vendor/raylib/examples/models/models_mesh_picking.c +223 -0
- package/vendor/raylib/examples/models/models_mesh_picking.png +0 -0
- package/vendor/raylib/examples/models/models_orthographic_projection.c +99 -0
- package/vendor/raylib/examples/models/models_orthographic_projection.png +0 -0
- package/vendor/raylib/examples/models/models_rlgl_solar_system.c +172 -0
- package/vendor/raylib/examples/models/models_rlgl_solar_system.png +0 -0
- package/vendor/raylib/examples/models/models_skybox.c +262 -0
- package/vendor/raylib/examples/models/models_skybox.png +0 -0
- package/vendor/raylib/examples/models/models_waving_cubes.c +112 -0
- package/vendor/raylib/examples/models/models_waving_cubes.png +0 -0
- package/vendor/raylib/examples/models/models_yaw_pitch_roll.c +117 -0
- package/vendor/raylib/examples/models/models_yaw_pitch_roll.png +0 -0
- package/vendor/raylib/examples/models/resources/LICENSE.md +23 -0
- package/vendor/raylib/examples/models/resources/billboard.png +0 -0
- package/vendor/raylib/examples/models/resources/cubicmap.png +0 -0
- package/vendor/raylib/examples/models/resources/cubicmap_atlas.png +0 -0
- package/vendor/raylib/examples/models/resources/dresden_square_1k.hdr +0 -0
- package/vendor/raylib/examples/models/resources/dresden_square_2k.hdr +0 -0
- package/vendor/raylib/examples/models/resources/heightmap.png +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/AnimatedMorphCube.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/AnimatedTriangle.gltf +118 -0
- package/vendor/raylib/examples/models/resources/models/gltf/BoxAnimated.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/LICENSE +23 -0
- package/vendor/raylib/examples/models/resources/models/gltf/girl.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/raylib_32x32.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/rigged_figure.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/gltf/vertex_colored_object.glb +0 -0
- package/vendor/raylib/examples/models/resources/models/iqm/guy.blend +0 -0
- package/vendor/raylib/examples/models/resources/models/iqm/guy.iqm +0 -0
- package/vendor/raylib/examples/models/resources/models/iqm/guyanim.iqm +0 -0
- package/vendor/raylib/examples/models/resources/models/iqm/guytex.png +0 -0
- package/vendor/raylib/examples/models/resources/models/iqm/vertex_colored_object.iqm +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/bridge.obj +1725 -0
- package/vendor/raylib/examples/models/resources/models/obj/bridge_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/castle.obj +12919 -0
- package/vendor/raylib/examples/models/resources/models/obj/castle_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/cube.obj +68 -0
- package/vendor/raylib/examples/models/resources/models/obj/cube_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/house.obj +4564 -0
- package/vendor/raylib/examples/models/resources/models/obj/house_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/market.obj +7301 -0
- package/vendor/raylib/examples/models/resources/models/obj/market_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/plane.obj +10858 -0
- package/vendor/raylib/examples/models/resources/models/obj/plane_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/turret.obj +1888 -0
- package/vendor/raylib/examples/models/resources/models/obj/turret_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/obj/well.obj +1030 -0
- package/vendor/raylib/examples/models/resources/models/obj/well_diffuse.png +0 -0
- package/vendor/raylib/examples/models/resources/models/vox/LICENSE +9 -0
- package/vendor/raylib/examples/models/resources/models/vox/chr_knight.vox +0 -0
- package/vendor/raylib/examples/models/resources/models/vox/chr_sword.vox +0 -0
- package/vendor/raylib/examples/models/resources/models/vox/monu9.vox +0 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl100/cubemap.fs +29 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl100/cubemap.vs +20 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl100/skybox.fs +31 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl100/skybox.vs +24 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl330/cubemap.fs +30 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl330/cubemap.vs +20 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl330/skybox.fs +30 -0
- package/vendor/raylib/examples/models/resources/shaders/glsl330/skybox.vs +24 -0
- package/vendor/raylib/examples/models/resources/skybox.png +0 -0
- package/vendor/raylib/examples/models/rlights.h +183 -0
- package/vendor/raylib/examples/others/easings.h +263 -0
- package/vendor/raylib/examples/others/easings_testbed.c +227 -0
- package/vendor/raylib/examples/others/embedded_files_loading.c +103 -0
- package/vendor/raylib/examples/others/external/include/GLFW/glfw3.h +5538 -0
- package/vendor/raylib/examples/others/external/include/GLFW/glfw3native.h +572 -0
- package/vendor/raylib/examples/others/external/include/glad.h +5466 -0
- package/vendor/raylib/examples/others/external/lib/libglfw3.a +0 -0
- package/vendor/raylib/examples/others/raudio_standalone.c +152 -0
- package/vendor/raylib/examples/others/raylib_opengl_interop.c +152 -0
- package/vendor/raylib/examples/others/raylib_opengl_interop.png +0 -0
- package/vendor/raylib/examples/others/resources/audio/country.mp3 +0 -0
- package/vendor/raylib/examples/others/resources/audio/target.ogg +0 -0
- package/vendor/raylib/examples/others/resources/audio/weird.wav +0 -0
- package/vendor/raylib/examples/others/resources/audio_data.h +4893 -0
- package/vendor/raylib/examples/others/resources/image_data.h +9848 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl100/point_particle.fs +16 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl100/point_particle.vs +24 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl330/point_particle.fs +17 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl330/point_particle.vs +24 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl430/gol.glsl +41 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl430/gol_render.glsl +29 -0
- package/vendor/raylib/examples/others/resources/shaders/glsl430/gol_transfert.glsl +51 -0
- package/vendor/raylib/examples/others/rlgl_compute_shader.c +173 -0
- package/vendor/raylib/examples/others/rlgl_standalone.c +469 -0
- package/vendor/raylib/examples/physics/physics_demo.c +128 -0
- package/vendor/raylib/examples/physics/physics_demo.png +0 -0
- package/vendor/raylib/examples/physics/physics_friction.c +142 -0
- package/vendor/raylib/examples/physics/physics_friction.png +0 -0
- package/vendor/raylib/examples/physics/physics_movement.c +128 -0
- package/vendor/raylib/examples/physics/physics_movement.png +0 -0
- package/vendor/raylib/examples/physics/physics_restitution.c +129 -0
- package/vendor/raylib/examples/physics/physics_restitution.png +0 -0
- package/vendor/raylib/examples/physics/physics_shatter.c +111 -0
- package/vendor/raylib/examples/physics/physics_shatter.png +0 -0
- package/vendor/raylib/examples/raylib_compile_execute.bat +32 -0
- package/vendor/raylib/examples/raylib_makefile_example.bat +27 -0
- package/vendor/raylib/examples/shaders/resources/LICENSE.md +11 -0
- package/vendor/raylib/examples/shaders/resources/fudesumi.png +0 -0
- package/vendor/raylib/examples/shaders/resources/mask.png +0 -0
- package/vendor/raylib/examples/shaders/resources/models/barracks.obj +22251 -0
- package/vendor/raylib/examples/shaders/resources/models/barracks_diffuse.png +0 -0
- package/vendor/raylib/examples/shaders/resources/models/church.obj +5116 -0
- package/vendor/raylib/examples/shaders/resources/models/church_diffuse.png +0 -0
- package/vendor/raylib/examples/shaders/resources/models/watermill.obj +5316 -0
- package/vendor/raylib/examples/shaders/resources/models/watermill_diffuse.png +0 -0
- package/vendor/raylib/examples/shaders/resources/plasma.png +0 -0
- package/vendor/raylib/examples/shaders/resources/raysan.png +0 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/base.fs +23 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/base.vs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/base_lighting.vs +59 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/base_lighting_instanced.vs +36 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/bloom.fs +39 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/blur.fs +34 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/color_mix.fs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/cross_hatching.fs +47 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/cross_stitching.fs +57 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/cubes_panning.fs +60 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/depth.fs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/distortion.fs +54 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/dream_vision.fs +37 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/eratosthenes.fs +60 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/fisheye.fs +43 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/fog.fs +94 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/grayscale.fs +25 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/julia_set.fs +83 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/lighting.fs +81 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/mask.fs +24 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/outline.fs +34 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/palette_switch.fs +41 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/pixelizer.fs +32 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/posterization.fs +29 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/predator.fs +31 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/raymarching.fs +431 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/reload.fs +39 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/scanlines.fs +44 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/sobel.fs +40 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/spotlight.fs +77 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/swirl.fs +46 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl100/wave.fs +36 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/base.fs +22 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/base.vs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/base_lighting.vs +59 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/bloom.fs +37 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/blur.fs +32 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/cross_hatching.fs +45 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/cross_stitching.fs +55 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/distortion.fs +52 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/dream_vision.fs +35 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/fisheye.fs +41 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/fog.fs +92 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/grayscale.fs +23 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/palette_switch.fs +27 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/pixelizer.fs +30 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/posterization.fs +27 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/predator.fs +29 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/scanlines.fs +42 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/sobel.fs +38 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl120/swirl.fs +44 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/base.fs +25 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/base.vs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/base_lighting.vs +32 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/base_lighting_instanced.vs +36 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/bloom.fs +40 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/blur.fs +35 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/color_mix.fs +27 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/cross_hatching.fs +48 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/cross_stitching.fs +59 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/cubes_panning.fs +61 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/depth.fs +27 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/distortion.fs +56 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/dream_vision.fs +34 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/eratosthenes.fs +59 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/fisheye.fs +40 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/fog.fs +95 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/grayscale.fs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/julia_set.fs +81 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/lighting.fs +82 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/mask.fs +22 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/outline.fs +35 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/overdraw.fs +26 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/palette_switch.fs +30 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/pixelizer.fs +33 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/posterization.fs +31 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/predator.fs +32 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/raymarching.fs +430 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/reload.fs +40 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/scanlines.fs +49 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/sobel.fs +41 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/spotlight.fs +65 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/swirl.fs +47 -0
- package/vendor/raylib/examples/shaders/resources/shaders/glsl330/wave.fs +37 -0
- package/vendor/raylib/examples/shaders/resources/space.png +0 -0
- package/vendor/raylib/examples/shaders/resources/texel_checker.png +0 -0
- package/vendor/raylib/examples/shaders/rlights.h +183 -0
- package/vendor/raylib/examples/shaders/shaders_basic_lighting.c +152 -0
- package/vendor/raylib/examples/shaders/shaders_basic_lighting.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_custom_uniform.c +127 -0
- package/vendor/raylib/examples/shaders/shaders_custom_uniform.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_eratosthenes.c +92 -0
- package/vendor/raylib/examples/shaders/shaders_eratosthenes.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_fog.c +160 -0
- package/vendor/raylib/examples/shaders/shaders_fog.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_hot_reloading.c +130 -0
- package/vendor/raylib/examples/shaders/shaders_hot_reloading.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_julia_set.c +191 -0
- package/vendor/raylib/examples/shaders/shaders_julia_set.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_mesh_instancing.c +224 -0
- package/vendor/raylib/examples/shaders/shaders_mesh_instancing.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_model_shader.c +103 -0
- package/vendor/raylib/examples/shaders/shaders_model_shader.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_multi_sample2d.c +105 -0
- package/vendor/raylib/examples/shaders/shaders_multi_sample2d.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_palette_switch.c +147 -0
- package/vendor/raylib/examples/shaders/shaders_palette_switch.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_postprocessing.c +170 -0
- package/vendor/raylib/examples/shaders/shaders_postprocessing.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_raymarching.c +113 -0
- package/vendor/raylib/examples/shaders/shaders_raymarching.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_shapes_textures.c +116 -0
- package/vendor/raylib/examples/shaders/shaders_shapes_textures.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_simple_mask.c +144 -0
- package/vendor/raylib/examples/shaders/shaders_simple_mask.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_spotlight.c +254 -0
- package/vendor/raylib/examples/shaders/shaders_spotlight.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_texture_drawing.c +80 -0
- package/vendor/raylib/examples/shaders/shaders_texture_drawing.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_texture_outline.c +97 -0
- package/vendor/raylib/examples/shaders/shaders_texture_outline.png +0 -0
- package/vendor/raylib/examples/shaders/shaders_texture_waves.c +110 -0
- package/vendor/raylib/examples/shaders/shaders_texture_waves.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_basic_shapes.c +78 -0
- package/vendor/raylib/examples/shapes/shapes_basic_shapes.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_bouncing_ball.c +76 -0
- package/vendor/raylib/examples/shapes/shapes_bouncing_ball.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_collision_area.c +108 -0
- package/vendor/raylib/examples/shapes/shapes_collision_area.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_colors_palette.c +99 -0
- package/vendor/raylib/examples/shapes/shapes_colors_palette.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_draw_circle_sector.c +83 -0
- package/vendor/raylib/examples/shapes/shapes_draw_circle_sector.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_draw_rectangle_rounded.c +89 -0
- package/vendor/raylib/examples/shapes/shapes_draw_rectangle_rounded.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_draw_ring.c +96 -0
- package/vendor/raylib/examples/shapes/shapes_draw_ring.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_easings_ball_anim.c +110 -0
- package/vendor/raylib/examples/shapes/shapes_easings_ball_anim.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_easings_box_anim.c +136 -0
- package/vendor/raylib/examples/shapes/shapes_easings_box_anim.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_easings_rectangle_array.c +118 -0
- package/vendor/raylib/examples/shapes/shapes_easings_rectangle_array.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_following_eyes.c +104 -0
- package/vendor/raylib/examples/shapes/shapes_following_eyes.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_lines_bezier.c +59 -0
- package/vendor/raylib/examples/shapes/shapes_lines_bezier.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_logo_raylib.c +56 -0
- package/vendor/raylib/examples/shapes/shapes_logo_raylib.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_logo_raylib_anim.c +160 -0
- package/vendor/raylib/examples/shapes/shapes_logo_raylib_anim.png +0 -0
- package/vendor/raylib/examples/shapes/shapes_rectangle_scaling.c +94 -0
- package/vendor/raylib/examples/shapes/shapes_rectangle_scaling.png +0 -0
- package/vendor/raylib/examples/text/resources/KAISG.ttf +0 -0
- package/vendor/raylib/examples/text/resources/LICENSE.md +20 -0
- package/vendor/raylib/examples/text/resources/anonymous_pro_bold.ttf +0 -0
- package/vendor/raylib/examples/text/resources/custom_alagard.png +0 -0
- package/vendor/raylib/examples/text/resources/custom_jupiter_crash.png +0 -0
- package/vendor/raylib/examples/text/resources/custom_mecha.png +0 -0
- package/vendor/raylib/examples/text/resources/dejavu.fnt +1115 -0
- package/vendor/raylib/examples/text/resources/dejavu.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/alagard.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/alpha_beta.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/jupiter_crash.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/mecha.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/pixantiqua.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/pixelplay.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/romulus.png +0 -0
- package/vendor/raylib/examples/text/resources/fonts/setback.png +0 -0
- package/vendor/raylib/examples/text/resources/noto_cjk.fnt +580 -0
- package/vendor/raylib/examples/text/resources/noto_cjk.png +0 -0
- package/vendor/raylib/examples/text/resources/pixantiqua.fnt +188 -0
- package/vendor/raylib/examples/text/resources/pixantiqua.png +0 -0
- package/vendor/raylib/examples/text/resources/pixantiqua.ttf +0 -0
- package/vendor/raylib/examples/text/resources/shaders/glsl100/alpha_discard.fs +20 -0
- package/vendor/raylib/examples/text/resources/shaders/glsl100/sdf.fs +25 -0
- package/vendor/raylib/examples/text/resources/shaders/glsl330/alpha_discard.fs +19 -0
- package/vendor/raylib/examples/text/resources/shaders/glsl330/sdf.fs +26 -0
- package/vendor/raylib/examples/text/resources/symbola.fnt +191 -0
- package/vendor/raylib/examples/text/resources/symbola.png +0 -0
- package/vendor/raylib/examples/text/text_draw_3d.c +739 -0
- package/vendor/raylib/examples/text/text_draw_3d.png +0 -0
- package/vendor/raylib/examples/text/text_font_filters.c +134 -0
- package/vendor/raylib/examples/text/text_font_filters.png +0 -0
- package/vendor/raylib/examples/text/text_font_loading.c +91 -0
- package/vendor/raylib/examples/text/text_font_loading.png +0 -0
- package/vendor/raylib/examples/text/text_font_sdf.c +141 -0
- package/vendor/raylib/examples/text/text_font_sdf.png +0 -0
- package/vendor/raylib/examples/text/text_font_spritefont.c +85 -0
- package/vendor/raylib/examples/text/text_font_spritefont.png +0 -0
- package/vendor/raylib/examples/text/text_format_text.c +62 -0
- package/vendor/raylib/examples/text/text_format_text.png +0 -0
- package/vendor/raylib/examples/text/text_input_box.c +127 -0
- package/vendor/raylib/examples/text/text_input_box.png +0 -0
- package/vendor/raylib/examples/text/text_raylib_fonts.c +105 -0
- package/vendor/raylib/examples/text/text_raylib_fonts.png +0 -0
- package/vendor/raylib/examples/text/text_rectangle_bounds.c +264 -0
- package/vendor/raylib/examples/text/text_rectangle_bounds.png +0 -0
- package/vendor/raylib/examples/text/text_unicode.c +465 -0
- package/vendor/raylib/examples/text/text_unicode.png +0 -0
- package/vendor/raylib/examples/text/text_writing_anim.c +62 -0
- package/vendor/raylib/examples/text/text_writing_anim.png +0 -0
- package/vendor/raylib/examples/textures/resources/KAISG.ttf +0 -0
- package/vendor/raylib/examples/textures/resources/LICENSE.md +18 -0
- package/vendor/raylib/examples/textures/resources/boom.wav +0 -0
- package/vendor/raylib/examples/textures/resources/button.png +0 -0
- package/vendor/raylib/examples/textures/resources/buttonfx.wav +0 -0
- package/vendor/raylib/examples/textures/resources/cat.png +0 -0
- package/vendor/raylib/examples/textures/resources/custom_jupiter_crash.png +0 -0
- package/vendor/raylib/examples/textures/resources/cyberpunk_street_background.png +0 -0
- package/vendor/raylib/examples/textures/resources/cyberpunk_street_foreground.png +0 -0
- package/vendor/raylib/examples/textures/resources/cyberpunk_street_midground.png +0 -0
- package/vendor/raylib/examples/textures/resources/explosion.png +0 -0
- package/vendor/raylib/examples/textures/resources/fudesumi.png +0 -0
- package/vendor/raylib/examples/textures/resources/fudesumi.raw +0 -0
- package/vendor/raylib/examples/textures/resources/ninepatch_button.png +0 -0
- package/vendor/raylib/examples/textures/resources/parrots.png +0 -0
- package/vendor/raylib/examples/textures/resources/patterns.png +0 -0
- package/vendor/raylib/examples/textures/resources/raylib_logo.png +0 -0
- package/vendor/raylib/examples/textures/resources/scarfy.png +0 -0
- package/vendor/raylib/examples/textures/resources/spark_flame.png +0 -0
- package/vendor/raylib/examples/textures/resources/wabbit_alpha.png +0 -0
- package/vendor/raylib/examples/textures/textures_background_scrolling.c +87 -0
- package/vendor/raylib/examples/textures/textures_background_scrolling.png +0 -0
- package/vendor/raylib/examples/textures/textures_blend_modes.c +93 -0
- package/vendor/raylib/examples/textures/textures_blend_modes.png +0 -0
- package/vendor/raylib/examples/textures/textures_bunnymark.c +120 -0
- package/vendor/raylib/examples/textures/textures_bunnymark.png +0 -0
- package/vendor/raylib/examples/textures/textures_draw_tiled.c +165 -0
- package/vendor/raylib/examples/textures/textures_draw_tiled.png +0 -0
- package/vendor/raylib/examples/textures/textures_image_drawing.c +91 -0
- package/vendor/raylib/examples/textures/textures_image_drawing.png +0 -0
- package/vendor/raylib/examples/textures/textures_image_generation.c +102 -0
- package/vendor/raylib/examples/textures/textures_image_generation.png +0 -0
- package/vendor/raylib/examples/textures/textures_image_loading.c +64 -0
- package/vendor/raylib/examples/textures/textures_image_loading.png +0 -0
- package/vendor/raylib/examples/textures/textures_image_processing.c +169 -0
- package/vendor/raylib/examples/textures/textures_image_processing.png +0 -0
- package/vendor/raylib/examples/textures/textures_image_text.c +83 -0
- package/vendor/raylib/examples/textures/textures_image_text.png +0 -0
- package/vendor/raylib/examples/textures/textures_logo_raylib.c +57 -0
- package/vendor/raylib/examples/textures/textures_logo_raylib.png +0 -0
- package/vendor/raylib/examples/textures/textures_mouse_painting.c +221 -0
- package/vendor/raylib/examples/textures/textures_mouse_painting.png +0 -0
- package/vendor/raylib/examples/textures/textures_npatch_drawing.c +109 -0
- package/vendor/raylib/examples/textures/textures_npatch_drawing.png +0 -0
- package/vendor/raylib/examples/textures/textures_particles_blending.c +135 -0
- package/vendor/raylib/examples/textures/textures_particles_blending.png +0 -0
- package/vendor/raylib/examples/textures/textures_polygon.c +100 -0
- package/vendor/raylib/examples/textures/textures_polygon.png +0 -0
- package/vendor/raylib/examples/textures/textures_raw_data.c +99 -0
- package/vendor/raylib/examples/textures/textures_raw_data.png +0 -0
- package/vendor/raylib/examples/textures/textures_rectangle.c +99 -0
- package/vendor/raylib/examples/textures/textures_rectangle.png +0 -0
- package/vendor/raylib/examples/textures/textures_sprite_button.c +97 -0
- package/vendor/raylib/examples/textures/textures_sprite_button.png +0 -0
- package/vendor/raylib/examples/textures/textures_sprite_explosion.c +120 -0
- package/vendor/raylib/examples/textures/textures_sprite_explosion.png +0 -0
- package/vendor/raylib/examples/textures/textures_srcrec_dstrec.c +82 -0
- package/vendor/raylib/examples/textures/textures_srcrec_dstrec.png +0 -0
- package/vendor/raylib/examples/textures/textures_to_image.c +68 -0
- package/vendor/raylib/examples/textures/textures_to_image.png +0 -0
- package/vendor/raylib/logo/raylib.ico +0 -0
- package/vendor/raylib/logo/raylib_128x128.png +0 -0
- package/vendor/raylib/logo/raylib_144x144.png +0 -0
- package/vendor/raylib/logo/raylib_16x16.png +0 -0
- package/vendor/raylib/logo/raylib_180x180.png +0 -0
- package/vendor/raylib/logo/raylib_24x24.png +0 -0
- package/vendor/raylib/logo/raylib_256x256.png +0 -0
- package/vendor/raylib/logo/raylib_32x32.png +0 -0
- package/vendor/raylib/logo/raylib_36x36.png +0 -0
- package/vendor/raylib/logo/raylib_48x48.png +0 -0
- package/vendor/raylib/logo/raylib_512x512.png +0 -0
- package/vendor/raylib/logo/raylib_64x64.png +0 -0
- package/vendor/raylib/logo/raylib_72x72.png +0 -0
- package/vendor/raylib/logo/raylib_96x96.png +0 -0
- package/vendor/raylib/logo/raylib_logo_animation.gif +0 -0
- package/vendor/raylib/parser/LICENSE +16 -0
- package/vendor/raylib/parser/README.md +63 -0
- package/vendor/raylib/parser/raylib_api.json +6668 -0
- package/vendor/raylib/parser/raylib_api.txt +3568 -0
- package/vendor/raylib/parser/raylib_api.xml +2509 -0
- package/vendor/raylib/parser/raylib_parser.c +1003 -0
- package/vendor/raylib/projects/4coder/Makefile +401 -0
- package/vendor/raylib/projects/4coder/Makefile.Android +300 -0
- package/vendor/raylib/projects/4coder/main.c +39 -0
- package/vendor/raylib/projects/4coder/project.4coder +54 -0
- package/vendor/raylib/projects/Builder/README.md +24 -0
- package/vendor/raylib/projects/Builder/examples/README.md +1 -0
- package/vendor/raylib/projects/Builder/examples/meson.build +25 -0
- package/vendor/raylib/projects/Builder/meson.build +25 -0
- package/vendor/raylib/projects/CMake/CMakeLists.txt +44 -0
- package/vendor/raylib/projects/CMake/core_basic_window.c +62 -0
- package/vendor/raylib/projects/CodeBlocks/README.md +22 -0
- package/vendor/raylib/projects/CodeBlocks/compiler_settings.png +0 -0
- package/vendor/raylib/projects/CodeBlocks/core_basic_window.c +58 -0
- package/vendor/raylib/projects/CodeBlocks/core_basic_window.cbp +137 -0
- package/vendor/raylib/projects/Geany/core_basic_window.c +52 -0
- package/vendor/raylib/projects/Geany/raylib.c.tags +452 -0
- package/vendor/raylib/projects/Geany/raylib_compile_execute.bat +21 -0
- package/vendor/raylib/projects/Geany/raylib_compile_sources.bat +42 -0
- package/vendor/raylib/projects/Geany/raylib_project.geany +41 -0
- package/vendor/raylib/projects/Notepad++/README.md +19 -0
- package/vendor/raylib/projects/Notepad++/c_raylib.xml +3104 -0
- package/vendor/raylib/projects/Notepad++/npes_saved_mingw.txt +0 -0
- package/vendor/raylib/projects/Notepad++/npes_saved_tcc.txt +0 -0
- package/vendor/raylib/projects/Notepad++/npes_saved_w64devkit.txt +0 -0
- package/vendor/raylib/projects/Notepad++/npes_saved_zig.txt +0 -0
- package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_npp.xml +3060 -0
- package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_npp_parser.c +150 -0
- package/vendor/raylib/projects/Notepad++/raylib_npp_parser/raylib_to_parse.h +631 -0
- package/vendor/raylib/projects/README.md +18 -0
- package/vendor/raylib/projects/SublimeText/README.md +13 -0
- package/vendor/raylib/projects/SublimeText/raylib.sublime-build +13 -0
- package/vendor/raylib/projects/SublimeText/raylib.sublime-project +8 -0
- package/vendor/raylib/projects/VS2019/examples/audio_module_playing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/audio_multichannel_sound.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/audio_music_stream.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/audio_raw_stream.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/audio_sound_loading.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_2d_camera.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_2d_camera_platformer.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_3d_camera_first_person.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_3d_camera_free.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_3d_camera_mode.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_3d_picking.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_basic_window.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_custom_logging.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_drop_files.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_input_gamepad.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_input_gestures.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_input_keys.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_input_mouse.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_input_mouse_wheel.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_input_multitouch.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_loading_thread.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_quat_conversion.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_random_values.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_scissor_test.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_split_screen.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_storage_values.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_vr_simulator.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_window_flags.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_window_letterbox.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/core_world_screen.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/easings_testbed.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/embedded_files_loading.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_animation.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_billboard.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_box_collisions.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_cubicmap.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_first_person_maze.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_geometric_shapes.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_heightmap.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_loading.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_loading_gltf.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_loading_vox.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_mesh_generation.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_mesh_picking.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_orthographic_projection.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_rlgl_solar_system.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_skybox.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_waving_cubes.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/models_yaw_pitch_roll.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/physics_demo.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/physics_friction.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/physics_movement.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/physics_restitution.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/physics_shatter.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/raudio_standalone.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/rlgl_standalone.vcxproj +391 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_basic_lighting.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_custom_uniform.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_eratosthenes.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_fog.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_hot_reloading.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_julia_set.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_mesh_instancing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_model_shader.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_multi_sample2d.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_palette_switch.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_postprocessing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_raymarching.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_shapes_textures.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_simple_mask.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_spotlight.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_texture_drawing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shaders_texture_waves.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_basic_shapes.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_bouncing_ball.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_collision_area.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_colors_palette.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_draw_circle_sector.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_draw_rectangle_rounded.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_draw_ring.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_easings_ball_anim.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_easings_box_anim.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_easings_rectangle_array.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_following_eyes.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_lines_bezier.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_logo_raylib.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_logo_raylib_anim.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/shapes_rectangle_scaling.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_font_filters.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_font_loading.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_font_sdf.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_font_spritefont.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_format_text.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_input_box.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_raylib_fonts.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_rectangle_bounds.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_unicode.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/text_writing_anim.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_background_scrolling.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_blend_modes.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_bunnymark.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_draw_tiled.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_image_drawing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_image_generation.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_image_loading.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_image_processing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_image_text.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_logo_raylib.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_mouse_painting.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_npatch_drawing.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_particles_blending.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_raw_data.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_rectangle.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_sprite_button.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_sprite_explosion.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_srcrec_dstrec.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/examples/textures_to_image.vcxproj +387 -0
- package/vendor/raylib/projects/VS2019/raylib/raylib.rc +0 -0
- package/vendor/raylib/projects/VS2019/raylib/raylib.vcxproj +341 -0
- package/vendor/raylib/projects/VS2019/raylib/resource.h +14 -0
- package/vendor/raylib/projects/VS2019/raylib.sln +2274 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/android_native_app_glue.c +437 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/android_native_app_glue.h +344 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/main.c +64 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/raylib_android.NativeActivity.vcxproj +226 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/raylib_android.NativeActivity.vcxproj.filters +10 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.NativeActivity/raylib_android.NativeActivity.vcxproj.user +4 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/AndroidManifest.xml +22 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/build.xml +90 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/project.properties +3 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/raylib_android.Packaging.androidproj +134 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android/raylib_android.Packaging/res/values/strings.xml +4 -0
- package/vendor/raylib/projects/VS2019-Android/raylib_android.sln +75 -0
- package/vendor/raylib/projects/VSCode/.vscode/c_cpp_properties.json +63 -0
- package/vendor/raylib/projects/VSCode/.vscode/launch.json +60 -0
- package/vendor/raylib/projects/VSCode/.vscode/settings.json +11 -0
- package/vendor/raylib/projects/VSCode/.vscode/tasks.json +71 -0
- package/vendor/raylib/projects/VSCode/Makefile +408 -0
- package/vendor/raylib/projects/VSCode/Makefile.Android +300 -0
- package/vendor/raylib/projects/VSCode/main.c +83 -0
- package/vendor/raylib/projects/VSCode/main.code-workspace +16 -0
- package/vendor/raylib/projects/scripts/README.md +68 -0
- package/vendor/raylib/projects/scripts/build-linux.sh +169 -0
- package/vendor/raylib/projects/scripts/build-osx.sh +171 -0
- package/vendor/raylib/projects/scripts/build-rpi.sh +169 -0
- package/vendor/raylib/projects/scripts/build-windows.bat +219 -0
- package/vendor/raylib/projects/scripts/core_basic_window.c +61 -0
- package/vendor/raylib/raylib.pc.in +13 -0
- package/vendor/raylib/src/CMakeLists.txt +121 -0
- package/vendor/raylib/src/Makefile +696 -0
- package/vendor/raylib/src/build.zig +60 -0
- package/vendor/raylib/src/config.h +230 -0
- package/vendor/raylib/src/external/cgltf.h +6501 -0
- package/vendor/raylib/src/external/dirent.h +183 -0
- package/vendor/raylib/src/external/dr_flac.h +12269 -0
- package/vendor/raylib/src/external/dr_mp3.h +4787 -0
- package/vendor/raylib/src/external/dr_wav.h +8019 -0
- package/vendor/raylib/src/external/glad.h +8640 -0
- package/vendor/raylib/src/external/glfw/.mailmap +10 -0
- package/vendor/raylib/src/external/glfw/CMake/GenerateMappings.cmake +33 -0
- package/vendor/raylib/src/external/glfw/CMake/Info.plist.in +38 -0
- package/vendor/raylib/src/external/glfw/CMake/MacOSXBundleInfo.plist.in +38 -0
- package/vendor/raylib/src/external/glfw/CMake/cmake_uninstall.cmake.in +29 -0
- package/vendor/raylib/src/external/glfw/CMake/glfw3.pc.in +13 -0
- package/vendor/raylib/src/external/glfw/CMake/glfw3Config.cmake.in +3 -0
- package/vendor/raylib/src/external/glfw/CMake/i686-w64-mingw32-clang.cmake +13 -0
- package/vendor/raylib/src/external/glfw/CMake/i686-w64-mingw32.cmake +13 -0
- package/vendor/raylib/src/external/glfw/CMake/modules/FindEpollShim.cmake +17 -0
- package/vendor/raylib/src/external/glfw/CMake/modules/FindOSMesa.cmake +18 -0
- package/vendor/raylib/src/external/glfw/CMake/modules/FindWaylandProtocols.cmake +26 -0
- package/vendor/raylib/src/external/glfw/CMake/modules/FindXKBCommon.cmake +34 -0
- package/vendor/raylib/src/external/glfw/CMake/x86_64-w64-mingw32-clang.cmake +13 -0
- package/vendor/raylib/src/external/glfw/CMake/x86_64-w64-mingw32.cmake +13 -0
- package/vendor/raylib/src/external/glfw/CMakeLists.txt +323 -0
- package/vendor/raylib/src/external/glfw/LICENSE.md +23 -0
- package/vendor/raylib/src/external/glfw/README.md +477 -0
- package/vendor/raylib/src/external/glfw/deps/getopt.c +230 -0
- package/vendor/raylib/src/external/glfw/deps/getopt.h +57 -0
- package/vendor/raylib/src/external/glfw/deps/glad/gl.h +3840 -0
- package/vendor/raylib/src/external/glfw/deps/glad/khrplatform.h +282 -0
- package/vendor/raylib/src/external/glfw/deps/glad/vk_platform.h +92 -0
- package/vendor/raylib/src/external/glfw/deps/glad/vulkan.h +3480 -0
- package/vendor/raylib/src/external/glfw/deps/glad_gl.c +1791 -0
- package/vendor/raylib/src/external/glfw/deps/glad_vulkan.c +593 -0
- package/vendor/raylib/src/external/glfw/deps/mingw/_mingw_dxhelper.h +117 -0
- package/vendor/raylib/src/external/glfw/deps/mingw/dinput.h +2467 -0
- package/vendor/raylib/src/external/glfw/deps/mingw/xinput.h +239 -0
- package/vendor/raylib/src/external/glfw/deps/vs2008/stdint.h +247 -0
- package/vendor/raylib/src/external/glfw/include/GLFW/glfw3.h +6075 -0
- package/vendor/raylib/src/external/glfw/include/GLFW/glfw3native.h +530 -0
- package/vendor/raylib/src/external/glfw/src/CMakeLists.txt +246 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_init.m +620 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_joystick.h +46 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_joystick.m +483 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_monitor.m +631 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_platform.h +206 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_time.c +62 -0
- package/vendor/raylib/src/external/glfw/src/cocoa_window.m +1923 -0
- package/vendor/raylib/src/external/glfw/src/context.c +756 -0
- package/vendor/raylib/src/external/glfw/src/egl_context.c +846 -0
- package/vendor/raylib/src/external/glfw/src/egl_context.h +229 -0
- package/vendor/raylib/src/external/glfw/src/glfw.rc.in +30 -0
- package/vendor/raylib/src/external/glfw/src/glfw_config.h.in +58 -0
- package/vendor/raylib/src/external/glfw/src/glx_context.c +699 -0
- package/vendor/raylib/src/external/glfw/src/glx_context.h +181 -0
- package/vendor/raylib/src/external/glfw/src/init.c +357 -0
- package/vendor/raylib/src/external/glfw/src/input.c +1406 -0
- package/vendor/raylib/src/external/glfw/src/internal.h +799 -0
- package/vendor/raylib/src/external/glfw/src/linux_joystick.c +428 -0
- package/vendor/raylib/src/external/glfw/src/linux_joystick.h +59 -0
- package/vendor/raylib/src/external/glfw/src/mappings.h +1550 -0
- package/vendor/raylib/src/external/glfw/src/mappings.h.in +73 -0
- package/vendor/raylib/src/external/glfw/src/monitor.c +542 -0
- package/vendor/raylib/src/external/glfw/src/nsgl_context.h +66 -0
- package/vendor/raylib/src/external/glfw/src/nsgl_context.m +369 -0
- package/vendor/raylib/src/external/glfw/src/null_init.c +57 -0
- package/vendor/raylib/src/external/glfw/src/null_joystick.c +53 -0
- package/vendor/raylib/src/external/glfw/src/null_joystick.h +31 -0
- package/vendor/raylib/src/external/glfw/src/null_monitor.c +159 -0
- package/vendor/raylib/src/external/glfw/src/null_platform.h +89 -0
- package/vendor/raylib/src/external/glfw/src/null_window.c +670 -0
- package/vendor/raylib/src/external/glfw/src/osmesa_context.c +372 -0
- package/vendor/raylib/src/external/glfw/src/osmesa_context.h +90 -0
- package/vendor/raylib/src/external/glfw/src/posix_thread.c +105 -0
- package/vendor/raylib/src/external/glfw/src/posix_thread.h +51 -0
- package/vendor/raylib/src/external/glfw/src/posix_time.c +90 -0
- package/vendor/raylib/src/external/glfw/src/posix_time.h +44 -0
- package/vendor/raylib/src/external/glfw/src/vulkan.c +332 -0
- package/vendor/raylib/src/external/glfw/src/wgl_context.c +798 -0
- package/vendor/raylib/src/external/glfw/src/wgl_context.h +160 -0
- package/vendor/raylib/src/external/glfw/src/win32_init.c +636 -0
- package/vendor/raylib/src/external/glfw/src/win32_joystick.c +753 -0
- package/vendor/raylib/src/external/glfw/src/win32_joystick.h +53 -0
- package/vendor/raylib/src/external/glfw/src/win32_monitor.c +537 -0
- package/vendor/raylib/src/external/glfw/src/win32_platform.h +462 -0
- package/vendor/raylib/src/external/glfw/src/win32_thread.c +99 -0
- package/vendor/raylib/src/external/glfw/src/win32_time.c +76 -0
- package/vendor/raylib/src/external/glfw/src/win32_window.c +2405 -0
- package/vendor/raylib/src/external/glfw/src/window.c +1114 -0
- package/vendor/raylib/src/external/glfw/src/wl_init.c +1310 -0
- package/vendor/raylib/src/external/glfw/src/wl_monitor.c +231 -0
- package/vendor/raylib/src/external/glfw/src/wl_platform.h +352 -0
- package/vendor/raylib/src/external/glfw/src/wl_window.c +1814 -0
- package/vendor/raylib/src/external/glfw/src/x11_init.c +1500 -0
- package/vendor/raylib/src/external/glfw/src/x11_monitor.c +614 -0
- package/vendor/raylib/src/external/glfw/src/x11_platform.h +798 -0
- package/vendor/raylib/src/external/glfw/src/x11_window.c +3310 -0
- package/vendor/raylib/src/external/glfw/src/xkb_unicode.c +942 -0
- package/vendor/raylib/src/external/glfw/src/xkb_unicode.h +28 -0
- package/vendor/raylib/src/external/jar_mod.h +1596 -0
- package/vendor/raylib/src/external/jar_xm.h +2470 -0
- package/vendor/raylib/src/external/miniaudio.h +70273 -0
- package/vendor/raylib/src/external/msf_gif.h +717 -0
- package/vendor/raylib/src/external/par_shapes.h +2155 -0
- package/vendor/raylib/src/external/sdefl.h +696 -0
- package/vendor/raylib/src/external/sinfl.h +584 -0
- package/vendor/raylib/src/external/stb_image.h +7897 -0
- package/vendor/raylib/src/external/stb_image_resize.h +2634 -0
- package/vendor/raylib/src/external/stb_image_write.h +1724 -0
- package/vendor/raylib/src/external/stb_rect_pack.h +623 -0
- package/vendor/raylib/src/external/stb_truetype.h +5077 -0
- package/vendor/raylib/src/external/stb_vorbis.h +5475 -0
- package/vendor/raylib/src/external/tinyobj_loader_c.h +1589 -0
- package/vendor/raylib/src/external/vox_loader.h +710 -0
- package/vendor/raylib/src/extras/easings.h +263 -0
- package/vendor/raylib/src/extras/physac.h +1977 -0
- package/vendor/raylib/src/extras/raygui.h +4342 -0
- package/vendor/raylib/src/extras/rmem.h +751 -0
- package/vendor/raylib/src/raudio.c +2380 -0
- package/vendor/raylib/src/raudio.h +198 -0
- package/vendor/raylib/src/raylib.dll.rc +27 -0
- package/vendor/raylib/src/raylib.dll.rc.data +0 -0
- package/vendor/raylib/src/raylib.h +1536 -0
- package/vendor/raylib/src/raylib.ico +0 -0
- package/vendor/raylib/src/raylib.rc +27 -0
- package/vendor/raylib/src/raylib.rc.data +0 -0
- package/vendor/raylib/src/raymath.h +1853 -0
- package/vendor/raylib/src/rcamera.h +567 -0
- package/vendor/raylib/src/rcore.c +6772 -0
- package/vendor/raylib/src/rgestures.h +566 -0
- package/vendor/raylib/src/rglfw.c +126 -0
- package/vendor/raylib/src/rlgl.h +4677 -0
- package/vendor/raylib/src/rmodels.c +5041 -0
- package/vendor/raylib/src/rshapes.c +1759 -0
- package/vendor/raylib/src/rtext.c +1790 -0
- package/vendor/raylib/src/rtextures.c +4761 -0
- package/vendor/raylib/src/shell.html +328 -0
- package/vendor/raylib/src/utils.c +433 -0
- package/vendor/raylib/src/utils.h +81 -0
- package/vendor/sqlite3/shell.c +23487 -0
- package/vendor/sqlite3/sqlite3.c +239246 -0
- package/vendor/sqlite3/sqlite3.h +12802 -0
- package/vendor/sqlite3/sqlite3ext.h +689 -0
- package/CMakeLists.txt +0 -60
|
@@ -0,0 +1,1725 @@
|
|
|
1
|
+
# (c) 2018 Medieval Assets Pack by Alberto Cano
|
|
2
|
+
# Licensed as Creative Commons Attribution-NonCommercial 4.0
|
|
3
|
+
|
|
4
|
+
#
|
|
5
|
+
# object bridge
|
|
6
|
+
#
|
|
7
|
+
|
|
8
|
+
v 3.9982 -0.0023 11.9925
|
|
9
|
+
v 4.0712 0.0000 6.5164
|
|
10
|
+
v 3.9982 2.2042 6.5164
|
|
11
|
+
v 3.9982 1.3553 8.7417
|
|
12
|
+
v 4.1679 -0.0000 4.0663
|
|
13
|
+
v 4.1413 1.0540 4.2689
|
|
14
|
+
v 4.0712 2.8371 4.8031
|
|
15
|
+
v 3.9982 2.2699 8.7359
|
|
16
|
+
v 3.0685 2.2722 8.7359
|
|
17
|
+
v 3.0685 0.9146 11.9866
|
|
18
|
+
v 3.9982 0.9123 11.9866
|
|
19
|
+
v 4.3287 2.2355 3.4001
|
|
20
|
+
v 4.3287 3.3078 3.4952
|
|
21
|
+
v 0.0000 0.0000 4.0663
|
|
22
|
+
v 0.0000 1.4511 3.3640
|
|
23
|
+
v 4.3287 1.4511 3.3640
|
|
24
|
+
v 4.4633 3.0558 2.1675
|
|
25
|
+
v 4.4633 3.7271 2.1035
|
|
26
|
+
v 0.0000 2.4236 2.1918
|
|
27
|
+
v 4.4633 2.4236 2.1918
|
|
28
|
+
v 4.5231 3.3391 0.8674
|
|
29
|
+
v 4.5231 3.8066 0.8674
|
|
30
|
+
v 0.0000 2.7841 0.8674
|
|
31
|
+
v 4.5231 2.7841 0.8674
|
|
32
|
+
v 3.0685 2.2065 6.5164
|
|
33
|
+
v 3.1415 2.8394 4.8031
|
|
34
|
+
v 0.0000 2.8394 4.8031
|
|
35
|
+
v 0.0000 2.2065 6.5164
|
|
36
|
+
v 3.0685 1.3576 8.7417
|
|
37
|
+
v 0.0000 1.3576 8.7417
|
|
38
|
+
v 3.3990 3.3101 3.4952
|
|
39
|
+
v 0.0000 3.3101 3.4952
|
|
40
|
+
v 3.5336 3.7294 2.1035
|
|
41
|
+
v 0.0000 3.7294 2.1035
|
|
42
|
+
v 3.5934 3.8066 0.8674
|
|
43
|
+
v 0.0000 3.8066 0.8674
|
|
44
|
+
v 4.5862 3.4521 0.0062
|
|
45
|
+
v 4.5862 3.8557 0.0062
|
|
46
|
+
v 0.0000 2.9214 0.0062
|
|
47
|
+
v 4.5862 2.9214 0.0062
|
|
48
|
+
v 3.6565 3.8557 0.0062
|
|
49
|
+
v 0.0000 3.8557 0.0062
|
|
50
|
+
v 3.9982 1.3576 -8.7294
|
|
51
|
+
v 3.9982 2.2065 -6.5040
|
|
52
|
+
v 3.9982 0.0000 -6.5040
|
|
53
|
+
v 3.9982 -0.0674 -11.9801
|
|
54
|
+
v 4.0712 2.8394 -4.7908
|
|
55
|
+
v 4.0712 1.0546 -4.2566
|
|
56
|
+
v 4.0712 0.0000 -4.0540
|
|
57
|
+
v 3.9982 0.8472 -11.9860
|
|
58
|
+
v 3.0685 0.8472 -11.9860
|
|
59
|
+
v 3.0685 2.2722 -8.7353
|
|
60
|
+
v 3.9982 2.2722 -8.7353
|
|
61
|
+
v 4.3287 3.3101 -3.4828
|
|
62
|
+
v 4.3287 2.2361 -3.3877
|
|
63
|
+
v 4.3287 1.4511 -3.3516
|
|
64
|
+
v 0.0000 1.4511 -3.3516
|
|
65
|
+
v 0.0000 0.0000 -4.0540
|
|
66
|
+
v 4.4633 3.7294 -2.0911
|
|
67
|
+
v 4.4633 3.0564 -2.1551
|
|
68
|
+
v 4.4633 2.4236 -2.1794
|
|
69
|
+
v 0.0000 2.4236 -2.1794
|
|
70
|
+
v 4.5231 3.8066 -0.8551
|
|
71
|
+
v 4.5231 3.3391 -0.8551
|
|
72
|
+
v 4.5231 2.7841 -0.8551
|
|
73
|
+
v 0.0000 2.7841 -0.8551
|
|
74
|
+
v 0.0000 2.8394 -4.7908
|
|
75
|
+
v 3.1415 2.8394 -4.7908
|
|
76
|
+
v 3.0685 2.2065 -6.5040
|
|
77
|
+
v 0.0000 2.2065 -6.5040
|
|
78
|
+
v 3.0685 1.3576 -8.7294
|
|
79
|
+
v 0.0000 1.3576 -8.7294
|
|
80
|
+
v 0.0000 3.3101 -3.4828
|
|
81
|
+
v 3.3990 3.3101 -3.4828
|
|
82
|
+
v 0.0000 3.7294 -2.0911
|
|
83
|
+
v 3.5336 3.7294 -2.0911
|
|
84
|
+
v 0.0000 3.8066 -0.8551
|
|
85
|
+
v 3.5934 3.8066 -0.8551
|
|
86
|
+
v 0.0000 0.0000 11.9925
|
|
87
|
+
v 3.0685 0.0000 11.9925
|
|
88
|
+
v 3.9982 3.1188 6.5105
|
|
89
|
+
v 4.0712 3.7517 4.7973
|
|
90
|
+
v 3.1415 3.7540 4.7973
|
|
91
|
+
v 3.0685 3.1211 6.5105
|
|
92
|
+
v 4.3287 4.2224 3.4893
|
|
93
|
+
v 3.3990 4.2247 3.4893
|
|
94
|
+
v 4.4633 4.7189 1.8730
|
|
95
|
+
v 3.5336 4.7213 1.8730
|
|
96
|
+
v 4.5231 4.7213 0.8616
|
|
97
|
+
v 3.5934 4.7213 0.8616
|
|
98
|
+
v 4.5862 4.7213 0.0003
|
|
99
|
+
v 3.6565 4.7213 0.0003
|
|
100
|
+
v 3.0685 -0.0674 -11.9801
|
|
101
|
+
v 0.0000 0.0000 -11.9801
|
|
102
|
+
v 4.0712 3.7540 -4.7966
|
|
103
|
+
v 3.9982 3.1211 -6.5099
|
|
104
|
+
v 3.0685 3.1211 -6.5099
|
|
105
|
+
v 3.1415 3.7540 -4.7966
|
|
106
|
+
v 4.3287 4.2247 -3.4887
|
|
107
|
+
v 3.3990 4.2247 -3.4887
|
|
108
|
+
v 4.4633 4.7213 -1.8724
|
|
109
|
+
v 3.5336 4.7213 -1.8724
|
|
110
|
+
v 4.5231 4.7213 -0.8610
|
|
111
|
+
v 3.5934 4.7213 -0.8610
|
|
112
|
+
v 4.0914 1.3553 8.7417
|
|
113
|
+
v 4.0914 2.2042 6.5164
|
|
114
|
+
v 4.0914 3.1188 6.5105
|
|
115
|
+
v 4.0914 2.2699 8.7359
|
|
116
|
+
v 4.1643 2.8371 4.8031
|
|
117
|
+
v 4.1643 3.7517 4.7973
|
|
118
|
+
v 4.4218 3.3078 3.4952
|
|
119
|
+
v 4.4218 4.2224 3.4893
|
|
120
|
+
v 4.5564 3.7271 2.1035
|
|
121
|
+
v 4.5564 4.7189 1.8730
|
|
122
|
+
v 4.6162 3.8066 0.8674
|
|
123
|
+
v 4.6163 4.7213 0.8616
|
|
124
|
+
v 4.6793 3.8557 0.0062
|
|
125
|
+
v 4.6793 4.7213 0.0003
|
|
126
|
+
v 4.6162 3.8066 -0.8551
|
|
127
|
+
v 4.6163 4.7213 -0.8610
|
|
128
|
+
v 4.5564 3.7294 -2.0911
|
|
129
|
+
v 4.5564 4.7213 -1.8724
|
|
130
|
+
v 4.4218 3.3101 -3.4828
|
|
131
|
+
v 4.4218 4.2247 -3.4887
|
|
132
|
+
v 4.1643 2.8394 -4.7908
|
|
133
|
+
v 4.1643 3.7540 -4.7966
|
|
134
|
+
v 4.0914 2.2065 -6.5040
|
|
135
|
+
v 4.0914 3.1211 -6.5099
|
|
136
|
+
v 4.0914 1.3576 -8.7294
|
|
137
|
+
v 4.0914 2.2722 -8.7353
|
|
138
|
+
v 4.0913 -0.0674 -11.9801
|
|
139
|
+
v 4.0914 0.8472 -11.9860
|
|
140
|
+
v 3.9982 -0.0713 -13.3621
|
|
141
|
+
v 3.0685 -0.0713 -13.3621
|
|
142
|
+
v 3.0685 0.8434 -13.3680
|
|
143
|
+
v 3.9982 0.8434 -13.3680
|
|
144
|
+
v 3.0686 0.0039 13.3744
|
|
145
|
+
v 3.9982 0.0016 13.3744
|
|
146
|
+
v 3.9982 0.9162 13.3686
|
|
147
|
+
v 3.0686 0.9185 13.3686
|
|
148
|
+
v 4.0913 -0.0023 11.9925
|
|
149
|
+
v 4.0914 0.9123 11.9866
|
|
150
|
+
v 3.0685 1.8566 -11.9925
|
|
151
|
+
v 3.9982 1.8566 -11.9925
|
|
152
|
+
v 3.9982 1.8527 -13.3744
|
|
153
|
+
v 3.0685 1.8527 -13.3744
|
|
154
|
+
v 4.0913 -0.0713 -13.3621
|
|
155
|
+
v 4.0914 0.8434 -13.3680
|
|
156
|
+
v 4.0914 0.9162 13.3686
|
|
157
|
+
v 4.0914 0.0016 13.3744
|
|
158
|
+
v 4.0022 1.9216 11.9801
|
|
159
|
+
v 3.0726 1.9239 11.9801
|
|
160
|
+
v 3.0726 1.9278 13.3621
|
|
161
|
+
v 4.0022 1.9255 13.3621
|
|
162
|
+
v 4.3309 1.0532 -4.2736
|
|
163
|
+
v 4.5388 2.3452 -3.4047
|
|
164
|
+
v 4.5388 1.1804 -3.3687
|
|
165
|
+
v 4.3102 -0.0008 -3.9892
|
|
166
|
+
v 4.7395 3.1981 -2.1722
|
|
167
|
+
v 4.7395 2.2978 -2.1965
|
|
168
|
+
v 4.8125 3.4962 -0.8721
|
|
169
|
+
v 4.8125 2.7824 -0.8721
|
|
170
|
+
v 4.8215 3.5568 -0.0066
|
|
171
|
+
v 4.8215 2.8673 -0.0066
|
|
172
|
+
v 3.6673 0.0018 -3.9977
|
|
173
|
+
v 3.8281 1.1836 -3.3772
|
|
174
|
+
v 3.9627 2.3550 -2.2050
|
|
175
|
+
v 4.0226 2.7850 -0.8806
|
|
176
|
+
v 4.0856 2.8699 -0.0066
|
|
177
|
+
v 4.5862 3.5594 -0.0066
|
|
178
|
+
v 4.5231 3.4988 -0.8806
|
|
179
|
+
v 4.4633 3.1460 -2.1807
|
|
180
|
+
v 4.3287 2.3484 -3.4132
|
|
181
|
+
v 4.0712 1.0557 -4.2821
|
|
182
|
+
v 4.1503 -0.0013 -5.7369
|
|
183
|
+
v 4.2574 1.0789 -5.6478
|
|
184
|
+
v 3.9982 1.0815 -5.6563
|
|
185
|
+
v 4.3309 1.0532 4.2604
|
|
186
|
+
v 4.3102 -0.0008 3.9760
|
|
187
|
+
v 4.5388 1.1804 3.3555
|
|
188
|
+
v 4.5388 2.3452 3.3915
|
|
189
|
+
v 4.7395 2.2978 2.1833
|
|
190
|
+
v 4.7395 3.1981 2.1590
|
|
191
|
+
v 4.8125 2.7824 0.8589
|
|
192
|
+
v 4.8125 3.4962 0.8589
|
|
193
|
+
v 3.6673 0.0018 3.9845
|
|
194
|
+
v 3.8281 1.1836 3.3640
|
|
195
|
+
v 3.9627 2.3550 2.1918
|
|
196
|
+
v 4.0226 2.7850 0.8674
|
|
197
|
+
v 4.5231 3.4988 0.8674
|
|
198
|
+
v 4.4633 3.1460 2.1675
|
|
199
|
+
v 4.3287 2.3484 3.4001
|
|
200
|
+
v 4.1413 1.0557 4.2689
|
|
201
|
+
v 4.2574 1.0789 5.6346
|
|
202
|
+
v 4.1503 -0.0013 5.7237
|
|
203
|
+
v 4.0712 1.0815 5.6346
|
|
204
|
+
v 4.1764 4.0031 5.7280
|
|
205
|
+
v 2.7107 4.0031 5.7280
|
|
206
|
+
v 2.7107 4.0031 7.1178
|
|
207
|
+
v 4.1764 4.0031 7.1178
|
|
208
|
+
v 4.1764 0.0000 5.7280
|
|
209
|
+
v 2.6101 0.0000 5.7280
|
|
210
|
+
v 3.0500 2.0015 5.5403
|
|
211
|
+
v 4.3606 2.0015 5.5403
|
|
212
|
+
v 3.0500 2.0015 6.7032
|
|
213
|
+
v 2.6101 0.0000 7.1178
|
|
214
|
+
v 4.1764 0.0000 7.1178
|
|
215
|
+
v 4.3606 2.0015 6.7032
|
|
216
|
+
v 4.1764 4.0031 -5.7156
|
|
217
|
+
v 4.1764 4.0031 -7.1054
|
|
218
|
+
v 2.7107 4.0031 -7.1054
|
|
219
|
+
v 2.7107 4.0031 -5.7156
|
|
220
|
+
v 4.1764 -0.0000 -5.7156
|
|
221
|
+
v 4.3606 2.0015 -5.5280
|
|
222
|
+
v 3.0500 2.0015 -5.5280
|
|
223
|
+
v 2.6101 -0.0000 -5.7156
|
|
224
|
+
v 3.0500 2.0015 -6.6909
|
|
225
|
+
v 2.6101 -0.0000 -7.1054
|
|
226
|
+
v 4.3606 2.0015 -6.6909
|
|
227
|
+
v 4.1764 -0.0000 -7.1054
|
|
228
|
+
v -3.9982 -0.0023 11.9925
|
|
229
|
+
v -3.9982 1.3553 8.7417
|
|
230
|
+
v -3.9982 2.2042 6.5164
|
|
231
|
+
v -4.0712 0.0000 6.5164
|
|
232
|
+
v -4.0712 2.8371 4.8031
|
|
233
|
+
v -4.1413 1.0540 4.2689
|
|
234
|
+
v -4.1679 -0.0000 4.0663
|
|
235
|
+
v -3.9982 2.2699 8.7359
|
|
236
|
+
v -3.9982 0.9123 11.9866
|
|
237
|
+
v -3.0685 0.9146 11.9866
|
|
238
|
+
v -3.0685 2.2722 8.7359
|
|
239
|
+
v -4.3287 3.3078 3.4952
|
|
240
|
+
v -4.3287 2.2355 3.4001
|
|
241
|
+
v -4.3287 1.4511 3.3640
|
|
242
|
+
v -4.4633 3.7271 2.1035
|
|
243
|
+
v -4.4633 3.0558 2.1675
|
|
244
|
+
v -4.4633 2.4236 2.1918
|
|
245
|
+
v -4.5231 3.8066 0.8674
|
|
246
|
+
v -4.5231 3.3391 0.8674
|
|
247
|
+
v -4.5231 2.7841 0.8674
|
|
248
|
+
v -3.1415 2.8394 4.8031
|
|
249
|
+
v -3.0685 2.2065 6.5164
|
|
250
|
+
v -3.0685 1.3576 8.7417
|
|
251
|
+
v -3.3990 3.3101 3.4952
|
|
252
|
+
v -3.5336 3.7294 2.1035
|
|
253
|
+
v -3.5934 3.8066 0.8674
|
|
254
|
+
v -4.5862 3.8557 0.0062
|
|
255
|
+
v -4.5862 3.4521 0.0062
|
|
256
|
+
v -4.5862 2.9214 0.0062
|
|
257
|
+
v -3.6565 3.8557 0.0062
|
|
258
|
+
v -3.9982 1.3576 -8.7294
|
|
259
|
+
v -3.9982 -0.0674 -11.9801
|
|
260
|
+
v -3.9982 0.0000 -6.5040
|
|
261
|
+
v -3.9982 2.2065 -6.5040
|
|
262
|
+
v -4.0712 0.0000 -4.0540
|
|
263
|
+
v -4.0712 1.0546 -4.2566
|
|
264
|
+
v -4.0712 2.8394 -4.7908
|
|
265
|
+
v -3.9982 0.8472 -11.9860
|
|
266
|
+
v -3.9982 2.2722 -8.7353
|
|
267
|
+
v -3.0685 2.2722 -8.7353
|
|
268
|
+
v -3.0685 0.8472 -11.9860
|
|
269
|
+
v -4.3287 2.2361 -3.3877
|
|
270
|
+
v -4.3287 3.3101 -3.4828
|
|
271
|
+
v -4.3287 1.4511 -3.3516
|
|
272
|
+
v -4.4633 3.0564 -2.1551
|
|
273
|
+
v -4.4633 3.7294 -2.0911
|
|
274
|
+
v -4.4633 2.4236 -2.1794
|
|
275
|
+
v -4.5231 3.3391 -0.8551
|
|
276
|
+
v -4.5231 3.8066 -0.8551
|
|
277
|
+
v -4.5231 2.7841 -0.8551
|
|
278
|
+
v -3.0685 2.2065 -6.5040
|
|
279
|
+
v -3.1415 2.8394 -4.7908
|
|
280
|
+
v -3.0685 1.3576 -8.7294
|
|
281
|
+
v -3.3990 3.3101 -3.4828
|
|
282
|
+
v -3.5336 3.7294 -2.0911
|
|
283
|
+
v -3.5934 3.8066 -0.8551
|
|
284
|
+
v -3.0685 0.0000 11.9925
|
|
285
|
+
v -3.1415 3.7540 4.7973
|
|
286
|
+
v -4.0712 3.7517 4.7973
|
|
287
|
+
v -3.9982 3.1188 6.5105
|
|
288
|
+
v -3.0685 3.1211 6.5105
|
|
289
|
+
v -3.3990 4.2247 3.4893
|
|
290
|
+
v -4.3287 4.2224 3.4893
|
|
291
|
+
v -3.5336 4.7213 1.8730
|
|
292
|
+
v -4.4633 4.7189 1.8730
|
|
293
|
+
v -3.5934 4.7213 0.8616
|
|
294
|
+
v -4.5231 4.7213 0.8616
|
|
295
|
+
v -3.6565 4.7213 0.0003
|
|
296
|
+
v -4.5862 4.7213 0.0003
|
|
297
|
+
v -3.0685 -0.0674 -11.9801
|
|
298
|
+
v -3.0685 3.1211 -6.5099
|
|
299
|
+
v -3.9982 3.1211 -6.5099
|
|
300
|
+
v -4.0712 3.7540 -4.7966
|
|
301
|
+
v -3.1415 3.7540 -4.7966
|
|
302
|
+
v -4.3287 4.2247 -3.4887
|
|
303
|
+
v -3.3990 4.2247 -3.4887
|
|
304
|
+
v -4.4633 4.7213 -1.8724
|
|
305
|
+
v -3.5336 4.7213 -1.8724
|
|
306
|
+
v -4.5231 4.7213 -0.8610
|
|
307
|
+
v -3.5934 4.7213 -0.8610
|
|
308
|
+
v -4.0914 1.3553 8.7417
|
|
309
|
+
v -4.0914 2.2699 8.7359
|
|
310
|
+
v -4.0914 3.1188 6.5105
|
|
311
|
+
v -4.0914 2.2042 6.5164
|
|
312
|
+
v -4.1643 3.7517 4.7973
|
|
313
|
+
v -4.1643 2.8371 4.8031
|
|
314
|
+
v -4.4218 4.2224 3.4893
|
|
315
|
+
v -4.4218 3.3078 3.4952
|
|
316
|
+
v -4.5564 4.7189 1.8730
|
|
317
|
+
v -4.5564 3.7271 2.1035
|
|
318
|
+
v -4.6162 4.7213 0.8616
|
|
319
|
+
v -4.6162 3.8066 0.8674
|
|
320
|
+
v -4.6793 4.7213 0.0003
|
|
321
|
+
v -4.6793 3.8557 0.0062
|
|
322
|
+
v -4.6162 4.7213 -0.8610
|
|
323
|
+
v -4.6162 3.8066 -0.8551
|
|
324
|
+
v -4.5564 4.7213 -1.8724
|
|
325
|
+
v -4.5564 3.7294 -2.0911
|
|
326
|
+
v -4.4218 4.2247 -3.4887
|
|
327
|
+
v -4.4218 3.3101 -3.4828
|
|
328
|
+
v -4.1643 3.7540 -4.7966
|
|
329
|
+
v -4.1643 2.8394 -4.7908
|
|
330
|
+
v -4.0914 3.1211 -6.5099
|
|
331
|
+
v -4.0914 2.2065 -6.5040
|
|
332
|
+
v -4.0914 2.2722 -8.7353
|
|
333
|
+
v -4.0914 1.3576 -8.7294
|
|
334
|
+
v -4.0914 0.8472 -11.9860
|
|
335
|
+
v -4.0913 -0.0674 -11.9801
|
|
336
|
+
v -3.9982 -0.0713 -13.3621
|
|
337
|
+
v -3.9982 0.8434 -13.3680
|
|
338
|
+
v -3.0685 0.8434 -13.3680
|
|
339
|
+
v -3.0685 -0.0713 -13.3621
|
|
340
|
+
v -3.0686 0.0039 13.3744
|
|
341
|
+
v -3.0686 0.9185 13.3686
|
|
342
|
+
v -3.9982 0.9162 13.3686
|
|
343
|
+
v -3.9982 0.0016 13.3744
|
|
344
|
+
v -4.0913 -0.0023 11.9925
|
|
345
|
+
v -4.0914 0.9123 11.9866
|
|
346
|
+
v -3.0685 1.8566 -11.9925
|
|
347
|
+
v -3.0685 1.8527 -13.3744
|
|
348
|
+
v -3.9982 1.8527 -13.3744
|
|
349
|
+
v -3.9982 1.8566 -11.9925
|
|
350
|
+
v -4.0914 0.8434 -13.3680
|
|
351
|
+
v -4.0913 -0.0713 -13.3621
|
|
352
|
+
v -4.0914 0.0016 13.3744
|
|
353
|
+
v -4.0914 0.9162 13.3686
|
|
354
|
+
v -4.0022 1.9216 11.9801
|
|
355
|
+
v -4.0022 1.9255 13.3621
|
|
356
|
+
v -3.0726 1.9278 13.3621
|
|
357
|
+
v -3.0726 1.9239 11.9801
|
|
358
|
+
v -4.3309 1.0532 -4.2736
|
|
359
|
+
v -4.3102 -0.0008 -3.9892
|
|
360
|
+
v -4.5388 1.1804 -3.3687
|
|
361
|
+
v -4.5388 2.3452 -3.4047
|
|
362
|
+
v -4.7395 2.2978 -2.1965
|
|
363
|
+
v -4.7395 3.1981 -2.1722
|
|
364
|
+
v -4.8125 2.7824 -0.8721
|
|
365
|
+
v -4.8125 3.4962 -0.8721
|
|
366
|
+
v -4.8215 2.8673 -0.0066
|
|
367
|
+
v -4.8215 3.5568 -0.0066
|
|
368
|
+
v -3.6673 0.0018 -3.9977
|
|
369
|
+
v -3.8281 1.1836 -3.3772
|
|
370
|
+
v -3.9627 2.3550 -2.2050
|
|
371
|
+
v -4.0226 2.7850 -0.8806
|
|
372
|
+
v -4.0856 2.8699 -0.0066
|
|
373
|
+
v -4.5862 3.5594 -0.0066
|
|
374
|
+
v -4.5231 3.4988 -0.8806
|
|
375
|
+
v -4.4633 3.1460 -2.1807
|
|
376
|
+
v -4.3287 2.3484 -3.4132
|
|
377
|
+
v -4.0712 1.0557 -4.2821
|
|
378
|
+
v -4.2574 1.0789 -5.6478
|
|
379
|
+
v -4.1503 -0.0013 -5.7369
|
|
380
|
+
v -3.9982 1.0815 -5.6563
|
|
381
|
+
v -4.3309 1.0532 4.2604
|
|
382
|
+
v -4.5388 2.3452 3.3915
|
|
383
|
+
v -4.5388 1.1804 3.3555
|
|
384
|
+
v -4.3102 -0.0008 3.9760
|
|
385
|
+
v -4.7395 3.1981 2.1590
|
|
386
|
+
v -4.7395 2.2978 2.1833
|
|
387
|
+
v -4.8125 3.4962 0.8589
|
|
388
|
+
v -4.8125 2.7824 0.8589
|
|
389
|
+
v -3.6673 0.0018 3.9845
|
|
390
|
+
v -3.8281 1.1836 3.3640
|
|
391
|
+
v -3.9627 2.3550 2.1918
|
|
392
|
+
v -4.0226 2.7850 0.8674
|
|
393
|
+
v -4.5231 3.4988 0.8674
|
|
394
|
+
v -4.4633 3.1460 2.1675
|
|
395
|
+
v -4.3287 2.3484 3.4001
|
|
396
|
+
v -4.1413 1.0557 4.2689
|
|
397
|
+
v -4.1503 -0.0013 5.7237
|
|
398
|
+
v -4.2574 1.0789 5.6346
|
|
399
|
+
v -4.0712 1.0815 5.6346
|
|
400
|
+
v -4.1764 4.0031 5.7280
|
|
401
|
+
v -4.1764 4.0031 7.1178
|
|
402
|
+
v -2.7107 4.0031 7.1178
|
|
403
|
+
v -2.7107 4.0031 5.7280
|
|
404
|
+
v -4.1764 0.0000 5.7280
|
|
405
|
+
v -4.3606 2.0015 5.5403
|
|
406
|
+
v -3.0500 2.0015 5.5403
|
|
407
|
+
v -2.6101 0.0000 5.7280
|
|
408
|
+
v -3.0500 2.0015 6.7032
|
|
409
|
+
v -2.6101 0.0000 7.1178
|
|
410
|
+
v -4.3606 2.0015 6.7032
|
|
411
|
+
v -4.1764 0.0000 7.1178
|
|
412
|
+
v -4.1764 4.0031 -5.7156
|
|
413
|
+
v -2.7107 4.0031 -5.7156
|
|
414
|
+
v -2.7107 4.0031 -7.1054
|
|
415
|
+
v -4.1764 4.0031 -7.1054
|
|
416
|
+
v -4.1764 -0.0000 -5.7156
|
|
417
|
+
v -2.6101 -0.0000 -5.7156
|
|
418
|
+
v -3.0500 2.0015 -5.5280
|
|
419
|
+
v -4.3606 2.0015 -5.5280
|
|
420
|
+
v -3.0500 2.0015 -6.6909
|
|
421
|
+
v -2.6101 -0.0000 -7.1054
|
|
422
|
+
v -4.1764 -0.0000 -7.1054
|
|
423
|
+
v -4.3606 2.0015 -6.6909
|
|
424
|
+
# 416 vertices
|
|
425
|
+
|
|
426
|
+
vn 0.9998 0.0187 0.0075
|
|
427
|
+
vn 1.0000 -0.0000 -0.0000
|
|
428
|
+
vn 0.9996 0.0187 0.0223
|
|
429
|
+
vn 0.9995 0.0081 0.0318
|
|
430
|
+
vn 0.9995 0.0135 0.0290
|
|
431
|
+
vn 0.0041 0.9228 0.3854
|
|
432
|
+
vn 0.9942 -0.0101 0.1073
|
|
433
|
+
vn 0.9942 -0.0095 0.1071
|
|
434
|
+
vn 0.0000 -0.4357 -0.9001
|
|
435
|
+
vn -0.0000 -0.4357 -0.9001
|
|
436
|
+
vn 0.9983 -0.0052 0.0581
|
|
437
|
+
vn 0.9984 0.0054 0.0561
|
|
438
|
+
vn -0.0000 -0.7696 -0.6385
|
|
439
|
+
vn 0.0000 -0.7696 -0.6385
|
|
440
|
+
vn 0.9996 0.0025 0.0265
|
|
441
|
+
vn 0.9996 0.0000 0.0273
|
|
442
|
+
vn 0.0000 -0.9649 -0.2627
|
|
443
|
+
vn -0.0000 -0.9649 -0.2627
|
|
444
|
+
vn 0.0000 0.9380 0.3465
|
|
445
|
+
vn 0.0000 0.9343 0.3564
|
|
446
|
+
vn -0.0000 0.9409 0.3386
|
|
447
|
+
vn 0.0000 0.9409 0.3386
|
|
448
|
+
vn -0.0000 0.9575 0.2885
|
|
449
|
+
vn -0.0000 0.9981 0.0624
|
|
450
|
+
vn 0.9991 0.0000 0.0413
|
|
451
|
+
vn 0.0000 -0.9875 -0.1574
|
|
452
|
+
vn 0.0000 0.9984 0.0568
|
|
453
|
+
vn -0.0000 0.9984 0.0568
|
|
454
|
+
vn 1.0000 0.0000 -0.0000
|
|
455
|
+
vn 0.9997 -0.0065 -0.0216
|
|
456
|
+
vn 0.9998 -0.0039 -0.0203
|
|
457
|
+
vn 0.9999 0.0000 -0.0168
|
|
458
|
+
vn -0.0000 0.9159 -0.4015
|
|
459
|
+
vn 0.9942 -0.0095 -0.1071
|
|
460
|
+
vn 0.9924 -0.0353 -0.1180
|
|
461
|
+
vn 0.0000 -0.4357 0.9001
|
|
462
|
+
vn 0.9984 0.0053 -0.0561
|
|
463
|
+
vn 0.9983 -0.0051 -0.0581
|
|
464
|
+
vn 0.0000 -0.7696 0.6385
|
|
465
|
+
vn 0.9996 0.0000 -0.0273
|
|
466
|
+
vn 0.9996 0.0025 -0.0265
|
|
467
|
+
vn 0.0000 -0.9649 0.2627
|
|
468
|
+
vn -0.0000 0.9380 -0.3465
|
|
469
|
+
vn 0.0000 0.9380 -0.3465
|
|
470
|
+
vn 0.0000 0.9343 -0.3564
|
|
471
|
+
vn -0.0000 0.9343 -0.3564
|
|
472
|
+
vn -0.0000 0.9409 -0.3386
|
|
473
|
+
vn 0.0000 0.9575 -0.2885
|
|
474
|
+
vn -0.0000 0.9575 -0.2885
|
|
475
|
+
vn 0.0000 0.9981 -0.0624
|
|
476
|
+
vn 0.9991 0.0000 -0.0413
|
|
477
|
+
vn 0.0000 -0.9875 0.1574
|
|
478
|
+
vn 0.0000 0.9984 -0.0568
|
|
479
|
+
vn 0.0000 0.9228 0.3854
|
|
480
|
+
vn 0.0041 0.9380 0.3466
|
|
481
|
+
vn 0.0041 0.9343 0.3564
|
|
482
|
+
vn 0.0042 0.9408 0.3390
|
|
483
|
+
vn 0.0042 0.9558 0.2938
|
|
484
|
+
vn -0.0000 1.0000 0.0023
|
|
485
|
+
vn 0.0044 1.0000 0.0001
|
|
486
|
+
vn 0.0000 1.0000 -0.0000
|
|
487
|
+
vn -0.0000 1.0000 -0.0000
|
|
488
|
+
vn 0.0359 0.9222 -0.3851
|
|
489
|
+
vn -0.0000 0.9559 -0.2937
|
|
490
|
+
vn -0.0000 1.0000 0.0000
|
|
491
|
+
vn 0.0000 1.0000 0.0000
|
|
492
|
+
vn 0.9997 0.0002 0.0241
|
|
493
|
+
vn 0.9939 0.0007 0.1107
|
|
494
|
+
vn 0.9982 0.0136 0.0586
|
|
495
|
+
vn 0.9989 0.0003 0.0470
|
|
496
|
+
vn 0.9996 0.0002 0.0273
|
|
497
|
+
vn 0.9994 0.0078 0.0334
|
|
498
|
+
vn 0.9991 0.0003 0.0413
|
|
499
|
+
vn 0.9991 -0.0003 -0.0413
|
|
500
|
+
vn 0.9996 0.0061 -0.0277
|
|
501
|
+
vn 0.9994 -0.0002 -0.0334
|
|
502
|
+
vn 0.9985 -0.0004 -0.0544
|
|
503
|
+
vn 0.9987 0.0111 -0.0503
|
|
504
|
+
vn 0.9939 -0.0007 -0.1102
|
|
505
|
+
vn 0.9997 -0.0002 -0.0240
|
|
506
|
+
vn 1.0000 -0.0000 0.0000
|
|
507
|
+
vn 0.0000 -0.0064 -1.0000
|
|
508
|
+
vn -1.0000 0.0000 -0.0000
|
|
509
|
+
vn -1.0000 0.0000 0.0000
|
|
510
|
+
vn -0.9997 0.0002 0.0240
|
|
511
|
+
vn -0.9939 0.0007 0.1102
|
|
512
|
+
vn -0.9982 -0.0129 0.0584
|
|
513
|
+
vn -0.9989 0.0003 0.0468
|
|
514
|
+
vn -0.9996 0.0002 0.0273
|
|
515
|
+
vn -0.9994 -0.0074 0.0334
|
|
516
|
+
vn -0.9991 0.0003 0.0413
|
|
517
|
+
vn -0.9991 -0.0003 -0.0413
|
|
518
|
+
vn -0.9996 -0.0064 -0.0277
|
|
519
|
+
vn -0.9994 -0.0002 -0.0334
|
|
520
|
+
vn -0.9985 -0.0004 -0.0546
|
|
521
|
+
vn -0.9987 -0.0117 -0.0505
|
|
522
|
+
vn -0.9939 -0.0007 -0.1107
|
|
523
|
+
vn -0.9997 -0.0002 -0.0241
|
|
524
|
+
vn 0.0000 0.0064 1.0000
|
|
525
|
+
vn 0.0000 1.0000 -0.0028
|
|
526
|
+
vn 0.0044 1.0000 -0.0028
|
|
527
|
+
vn -0.0000 0.0064 1.0000
|
|
528
|
+
vn -0.0000 -0.0064 -1.0000
|
|
529
|
+
vn -1.0000 0.0022 0.0000
|
|
530
|
+
vn 1.0000 -0.0023 -0.0000
|
|
531
|
+
vn -0.0000 -0.9343 -0.3564
|
|
532
|
+
vn 0.0000 -0.9380 -0.3465
|
|
533
|
+
vn -0.0000 -0.9380 -0.3465
|
|
534
|
+
vn -0.0000 -0.9409 -0.3386
|
|
535
|
+
vn 0.0000 -0.9409 -0.3386
|
|
536
|
+
vn -0.0000 -0.9575 -0.2885
|
|
537
|
+
vn -0.0000 -0.9979 -0.0642
|
|
538
|
+
vn -0.0000 -0.9984 -0.0568
|
|
539
|
+
vn -0.0000 -0.9984 0.0568
|
|
540
|
+
vn -0.0000 -0.9981 0.0624
|
|
541
|
+
vn -0.0000 -0.9575 0.2885
|
|
542
|
+
vn -0.0000 -0.9409 0.3386
|
|
543
|
+
vn -0.0000 -0.9380 0.3465
|
|
544
|
+
vn -0.0000 -0.9343 0.3564
|
|
545
|
+
vn -0.0000 -0.9159 0.4015
|
|
546
|
+
vn 0.0000 0.9159 -0.4015
|
|
547
|
+
vn 0.0000 0.9409 -0.3386
|
|
548
|
+
vn 0.0000 0.9559 -0.2937
|
|
549
|
+
vn 0.0000 1.0000 0.0023
|
|
550
|
+
vn 0.0000 0.9559 0.2937
|
|
551
|
+
vn -0.0000 -0.9228 -0.3854
|
|
552
|
+
vn 0.9918 -0.0040 -0.1281
|
|
553
|
+
vn 0.9915 -0.0440 -0.1224
|
|
554
|
+
vn 0.9956 0.0025 -0.0932
|
|
555
|
+
vn 0.9956 -0.0029 -0.0934
|
|
556
|
+
vn 0.9995 0.0000 -0.0317
|
|
557
|
+
vn 0.9995 0.0008 -0.0314
|
|
558
|
+
vn 1.0000 0.0000 -0.0059
|
|
559
|
+
vn -0.0241 -0.4629 0.8861
|
|
560
|
+
vn -0.0225 -0.4634 0.8859
|
|
561
|
+
vn -0.0204 -0.7227 0.6909
|
|
562
|
+
vn -0.1050 -0.7000 0.7064
|
|
563
|
+
vn -0.1280 -0.9301 0.3443
|
|
564
|
+
vn -0.0114 -0.9510 0.3091
|
|
565
|
+
vn -0.0076 -0.9952 0.0976
|
|
566
|
+
vn -0.0062 -0.9953 0.0969
|
|
567
|
+
vn 0.0194 0.9974 -0.0699
|
|
568
|
+
vn 0.0271 0.9742 -0.2243
|
|
569
|
+
vn -0.2950 0.9241 -0.2431
|
|
570
|
+
vn -0.2404 0.8084 -0.5373
|
|
571
|
+
vn 0.0616 0.8362 -0.5450
|
|
572
|
+
vn 0.0745 0.5518 -0.8306
|
|
573
|
+
vn 0.0580 0.5524 -0.8315
|
|
574
|
+
vn 0.9973 -0.0516 -0.0515
|
|
575
|
+
vn 0.9993 -0.0193 -0.0305
|
|
576
|
+
vn 0.0166 0.9997 0.0182
|
|
577
|
+
vn 0.9915 -0.0440 0.1224
|
|
578
|
+
vn 0.9918 -0.0040 0.1281
|
|
579
|
+
vn 0.9956 -0.0029 0.0934
|
|
580
|
+
vn 0.9956 0.0025 0.0932
|
|
581
|
+
vn 0.9995 0.0008 0.0314
|
|
582
|
+
vn 0.9995 0.0000 0.0317
|
|
583
|
+
vn 1.0000 0.0000 0.0059
|
|
584
|
+
vn -0.0225 -0.4634 -0.8859
|
|
585
|
+
vn -0.0241 -0.4629 -0.8861
|
|
586
|
+
vn -0.1050 -0.7000 -0.7064
|
|
587
|
+
vn -0.0204 -0.7227 -0.6909
|
|
588
|
+
vn -0.0114 -0.9510 -0.3091
|
|
589
|
+
vn -0.1280 -0.9301 -0.3443
|
|
590
|
+
vn -0.0062 -0.9953 -0.0969
|
|
591
|
+
vn -0.0076 -0.9952 -0.0976
|
|
592
|
+
vn 0.0194 0.9974 0.0699
|
|
593
|
+
vn -0.2950 0.9241 0.2431
|
|
594
|
+
vn 0.0271 0.9742 0.2243
|
|
595
|
+
vn 0.0617 0.8362 0.5450
|
|
596
|
+
vn -0.2404 0.8084 0.5373
|
|
597
|
+
vn 0.0794 0.5516 0.8303
|
|
598
|
+
vn 0.0745 0.5518 0.8306
|
|
599
|
+
vn 0.9993 -0.0193 0.0305
|
|
600
|
+
vn 0.9973 -0.0516 0.0515
|
|
601
|
+
vn 0.0227 0.9996 -0.0182
|
|
602
|
+
vn 0.0246 0.9995 -0.0180
|
|
603
|
+
vn 0.0000 -0.0933 -0.9956
|
|
604
|
+
vn 0.0000 0.0933 -0.9956
|
|
605
|
+
vn -0.9955 -0.0952 -0.0000
|
|
606
|
+
vn 0.0000 0.2028 0.9792
|
|
607
|
+
vn 0.0000 -0.2028 0.9792
|
|
608
|
+
vn 0.9987 -0.0519 0.0000
|
|
609
|
+
vn 0.9987 -0.0519 -0.0000
|
|
610
|
+
vn 0.9987 0.0519 -0.0000
|
|
611
|
+
vn 0.0000 -0.0933 0.9956
|
|
612
|
+
vn 0.0000 0.0933 0.9956
|
|
613
|
+
vn 0.0000 0.2028 -0.9792
|
|
614
|
+
vn 0.0000 -0.2028 -0.9792
|
|
615
|
+
vn -0.9998 0.0187 0.0075
|
|
616
|
+
vn -0.9995 0.0135 0.0290
|
|
617
|
+
vn -0.9995 0.0081 0.0318
|
|
618
|
+
vn -0.9996 0.0187 0.0223
|
|
619
|
+
vn -0.0041 0.9228 0.3854
|
|
620
|
+
vn -0.9942 -0.0095 0.1071
|
|
621
|
+
vn -0.9942 -0.0101 0.1073
|
|
622
|
+
vn -0.9984 0.0054 0.0561
|
|
623
|
+
vn -0.9983 -0.0052 0.0581
|
|
624
|
+
vn -0.9996 0.0000 0.0273
|
|
625
|
+
vn -0.9996 0.0025 0.0265
|
|
626
|
+
vn -0.0000 0.9380 0.3465
|
|
627
|
+
vn -0.0000 0.9343 0.3564
|
|
628
|
+
vn 0.0000 0.9575 0.2885
|
|
629
|
+
vn 0.0000 0.9981 0.0624
|
|
630
|
+
vn -0.9991 0.0000 0.0413
|
|
631
|
+
vn -0.0000 -0.9875 -0.1574
|
|
632
|
+
vn -0.9999 0.0000 -0.0168
|
|
633
|
+
vn -0.9998 -0.0039 -0.0203
|
|
634
|
+
vn -0.9997 -0.0065 -0.0216
|
|
635
|
+
vn -0.9924 -0.0353 -0.1180
|
|
636
|
+
vn -0.9942 -0.0095 -0.1071
|
|
637
|
+
vn -0.0000 -0.4357 0.9001
|
|
638
|
+
vn -0.9983 -0.0051 -0.0581
|
|
639
|
+
vn -0.9984 0.0053 -0.0561
|
|
640
|
+
vn -0.0000 -0.7696 0.6385
|
|
641
|
+
vn -0.9996 0.0025 -0.0265
|
|
642
|
+
vn -0.9996 0.0000 -0.0273
|
|
643
|
+
vn -0.0000 -0.9649 0.2627
|
|
644
|
+
vn -0.9991 0.0000 -0.0413
|
|
645
|
+
vn -0.0000 -0.9875 0.1574
|
|
646
|
+
vn -0.0000 0.9228 0.3854
|
|
647
|
+
vn -0.0041 0.9380 0.3466
|
|
648
|
+
vn -0.0041 0.9343 0.3564
|
|
649
|
+
vn -0.0042 0.9408 0.3390
|
|
650
|
+
vn -0.0042 0.9558 0.2938
|
|
651
|
+
vn -0.0044 1.0000 0.0001
|
|
652
|
+
vn -0.0359 0.9222 -0.3851
|
|
653
|
+
vn -1.0000 -0.0000 -0.0000
|
|
654
|
+
vn -0.9997 0.0002 0.0241
|
|
655
|
+
vn -0.9939 0.0007 0.1107
|
|
656
|
+
vn -0.9989 0.0003 0.0470
|
|
657
|
+
vn -0.9982 0.0136 0.0586
|
|
658
|
+
vn -0.9994 0.0078 0.0334
|
|
659
|
+
vn -0.9996 0.0061 -0.0277
|
|
660
|
+
vn -0.9987 0.0111 -0.0503
|
|
661
|
+
vn -0.9985 -0.0004 -0.0544
|
|
662
|
+
vn -0.9939 -0.0007 -0.1102
|
|
663
|
+
vn -0.9997 -0.0002 -0.0240
|
|
664
|
+
vn -1.0000 -0.0000 0.0000
|
|
665
|
+
vn 0.9997 0.0002 0.0240
|
|
666
|
+
vn 0.9939 0.0007 0.1102
|
|
667
|
+
vn 0.9989 0.0003 0.0468
|
|
668
|
+
vn 0.9982 -0.0129 0.0584
|
|
669
|
+
vn 0.9994 -0.0074 0.0334
|
|
670
|
+
vn 0.9996 -0.0064 -0.0277
|
|
671
|
+
vn 0.9987 -0.0117 -0.0505
|
|
672
|
+
vn 0.9985 -0.0004 -0.0546
|
|
673
|
+
vn 0.9939 -0.0007 -0.1107
|
|
674
|
+
vn 0.9997 -0.0002 -0.0241
|
|
675
|
+
vn -0.0044 1.0000 -0.0028
|
|
676
|
+
vn 1.0000 0.0000 0.0000
|
|
677
|
+
vn 1.0000 0.0023 -0.0000
|
|
678
|
+
vn -1.0000 -0.0023 0.0000
|
|
679
|
+
vn 0.0000 -0.9343 -0.3564
|
|
680
|
+
vn 0.0000 -0.9575 -0.2885
|
|
681
|
+
vn 0.0000 -0.9979 -0.0642
|
|
682
|
+
vn 0.0000 -0.9984 -0.0568
|
|
683
|
+
vn 0.0000 -0.9984 0.0568
|
|
684
|
+
vn 0.0000 -0.9981 0.0624
|
|
685
|
+
vn 0.0000 -0.9575 0.2885
|
|
686
|
+
vn 0.0000 -0.9409 0.3386
|
|
687
|
+
vn 0.0000 -0.9380 0.3465
|
|
688
|
+
vn 0.0000 -0.9343 0.3564
|
|
689
|
+
vn 0.0000 -0.9159 0.4015
|
|
690
|
+
vn -0.0000 1.0000 -0.0028
|
|
691
|
+
vn -0.0000 0.9559 0.2937
|
|
692
|
+
vn 0.0000 -0.9228 -0.3854
|
|
693
|
+
vn -0.9915 -0.0440 -0.1224
|
|
694
|
+
vn -0.9918 -0.0040 -0.1281
|
|
695
|
+
vn -0.9956 -0.0029 -0.0934
|
|
696
|
+
vn -0.9956 0.0025 -0.0932
|
|
697
|
+
vn -0.9995 0.0008 -0.0314
|
|
698
|
+
vn -0.9995 0.0000 -0.0317
|
|
699
|
+
vn -1.0000 0.0000 -0.0059
|
|
700
|
+
vn 0.0225 -0.4634 0.8859
|
|
701
|
+
vn 0.0241 -0.4629 0.8861
|
|
702
|
+
vn 0.1050 -0.7000 0.7064
|
|
703
|
+
vn 0.0204 -0.7227 0.6909
|
|
704
|
+
vn 0.0114 -0.9510 0.3091
|
|
705
|
+
vn 0.1280 -0.9301 0.3443
|
|
706
|
+
vn 0.0062 -0.9953 0.0969
|
|
707
|
+
vn 0.0076 -0.9952 0.0976
|
|
708
|
+
vn -0.0194 0.9974 -0.0699
|
|
709
|
+
vn 0.2950 0.9240 -0.2431
|
|
710
|
+
vn -0.0271 0.9742 -0.2243
|
|
711
|
+
vn -0.0616 0.8362 -0.5450
|
|
712
|
+
vn 0.2404 0.8084 -0.5373
|
|
713
|
+
vn -0.0580 0.5524 -0.8315
|
|
714
|
+
vn -0.0745 0.5518 -0.8306
|
|
715
|
+
vn -0.9993 -0.0193 -0.0305
|
|
716
|
+
vn -0.9973 -0.0516 -0.0515
|
|
717
|
+
vn -0.0166 0.9997 0.0182
|
|
718
|
+
vn -0.9918 -0.0040 0.1281
|
|
719
|
+
vn -0.9915 -0.0440 0.1224
|
|
720
|
+
vn -0.9956 0.0025 0.0932
|
|
721
|
+
vn -0.9956 -0.0029 0.0934
|
|
722
|
+
vn -0.9995 0.0000 0.0317
|
|
723
|
+
vn -0.9995 0.0008 0.0314
|
|
724
|
+
vn -1.0000 0.0000 0.0059
|
|
725
|
+
vn 0.0241 -0.4629 -0.8861
|
|
726
|
+
vn 0.0225 -0.4634 -0.8859
|
|
727
|
+
vn 0.0204 -0.7227 -0.6909
|
|
728
|
+
vn 0.1050 -0.7000 -0.7064
|
|
729
|
+
vn 0.1280 -0.9301 -0.3443
|
|
730
|
+
vn 0.0114 -0.9510 -0.3091
|
|
731
|
+
vn 0.0076 -0.9952 -0.0976
|
|
732
|
+
vn 0.0062 -0.9953 -0.0969
|
|
733
|
+
vn -0.0194 0.9974 0.0699
|
|
734
|
+
vn -0.0271 0.9742 0.2243
|
|
735
|
+
vn 0.2950 0.9241 0.2431
|
|
736
|
+
vn 0.2404 0.8084 0.5373
|
|
737
|
+
vn -0.0617 0.8362 0.5450
|
|
738
|
+
vn -0.0745 0.5518 0.8306
|
|
739
|
+
vn -0.0794 0.5516 0.8303
|
|
740
|
+
vn -0.9973 -0.0516 0.0515
|
|
741
|
+
vn -0.9993 -0.0193 0.0305
|
|
742
|
+
vn -0.0246 0.9995 -0.0180
|
|
743
|
+
vn -0.0227 0.9996 -0.0182
|
|
744
|
+
vn 0.9955 -0.0952 -0.0000
|
|
745
|
+
vn -0.9987 -0.0519 -0.0000
|
|
746
|
+
vn -0.9987 -0.0519 0.0000
|
|
747
|
+
vn -0.9987 0.0519 -0.0000
|
|
748
|
+
# 322 vertex normals
|
|
749
|
+
|
|
750
|
+
vt 0.0055 0.7726 0.0000
|
|
751
|
+
vt 0.2148 0.7727 0.0000
|
|
752
|
+
vt 0.2147 0.8639 0.0000
|
|
753
|
+
vt 0.1297 0.8288 0.0000
|
|
754
|
+
vt 0.3085 0.7727 0.0000
|
|
755
|
+
vt 0.3007 0.8163 0.0000
|
|
756
|
+
vt 0.2802 0.8900 0.0000
|
|
757
|
+
vt 0.1697 0.7009 0.0000
|
|
758
|
+
vt 0.1692 0.6636 0.0000
|
|
759
|
+
vt 0.0461 0.6643 0.0000
|
|
760
|
+
vt 0.0466 0.7016 0.0000
|
|
761
|
+
vt 0.3350 0.8652 0.0000
|
|
762
|
+
vt 0.3315 0.9095 0.0000
|
|
763
|
+
vt 0.3723 0.8137 0.0000
|
|
764
|
+
vt 0.3999 0.8136 0.0000
|
|
765
|
+
vt 0.4003 0.8870 0.0000
|
|
766
|
+
vt 0.3726 0.8844 0.0000
|
|
767
|
+
vt 0.3826 0.8991 0.0000
|
|
768
|
+
vt 0.3850 0.9268 0.0000
|
|
769
|
+
vt 0.4256 0.8135 0.0000
|
|
770
|
+
vt 0.4259 0.8892 0.0000
|
|
771
|
+
vt 0.4323 0.9108 0.0000
|
|
772
|
+
vt 0.4323 0.9301 0.0000
|
|
773
|
+
vt 0.4509 0.8134 0.0000
|
|
774
|
+
vt 0.4513 0.8901 0.0000
|
|
775
|
+
vt 0.7184 0.6451 0.0000
|
|
776
|
+
vt 0.6550 0.6472 0.0000
|
|
777
|
+
vt 0.6551 0.5407 0.0000
|
|
778
|
+
vt 0.7182 0.5411 0.0000
|
|
779
|
+
vt 0.8032 0.6449 0.0000
|
|
780
|
+
vt 0.8031 0.5410 0.0000
|
|
781
|
+
vt 0.6057 0.6561 0.0000
|
|
782
|
+
vt 0.6059 0.5409 0.0000
|
|
783
|
+
vt 0.5512 0.6609 0.0000
|
|
784
|
+
vt 0.5513 0.5412 0.0000
|
|
785
|
+
vt 0.5132 0.6630 0.0000
|
|
786
|
+
vt 0.5135 0.5412 0.0000
|
|
787
|
+
vt 0.4653 0.9155 0.0000
|
|
788
|
+
vt 0.4653 0.9321 0.0000
|
|
789
|
+
vt 0.4646 0.8133 0.0000
|
|
790
|
+
vt 0.4649 0.8911 0.0000
|
|
791
|
+
vt 0.4819 0.6653 0.0000
|
|
792
|
+
vt 0.4828 0.5414 0.0000
|
|
793
|
+
vt 0.8014 0.8288 0.0000
|
|
794
|
+
vt 0.7163 0.8639 0.0000
|
|
795
|
+
vt 0.7163 0.7727 0.0000
|
|
796
|
+
vt 0.9256 0.7699 0.0000
|
|
797
|
+
vt 0.6506 0.8901 0.0000
|
|
798
|
+
vt 0.6305 0.8163 0.0000
|
|
799
|
+
vt 0.6227 0.7727 0.0000
|
|
800
|
+
vt 0.9143 0.7019 0.0000
|
|
801
|
+
vt 0.9142 0.6646 0.0000
|
|
802
|
+
vt 0.7893 0.6638 0.0000
|
|
803
|
+
vt 0.7895 0.7012 0.0000
|
|
804
|
+
vt 0.5992 0.9096 0.0000
|
|
805
|
+
vt 0.5956 0.8652 0.0000
|
|
806
|
+
vt 0.5572 0.8820 0.0000
|
|
807
|
+
vt 0.5296 0.8865 0.0000
|
|
808
|
+
vt 0.5293 0.8131 0.0000
|
|
809
|
+
vt 0.5569 0.8130 0.0000
|
|
810
|
+
vt 0.5457 0.9269 0.0000
|
|
811
|
+
vt 0.5481 0.8991 0.0000
|
|
812
|
+
vt 0.5041 0.8889 0.0000
|
|
813
|
+
vt 0.5037 0.8132 0.0000
|
|
814
|
+
vt 0.4984 0.9301 0.0000
|
|
815
|
+
vt 0.4984 0.9108 0.0000
|
|
816
|
+
vt 0.4787 0.8900 0.0000
|
|
817
|
+
vt 0.4783 0.8133 0.0000
|
|
818
|
+
vt 0.3106 0.5420 0.0000
|
|
819
|
+
vt 0.3104 0.6485 0.0000
|
|
820
|
+
vt 0.2476 0.6456 0.0000
|
|
821
|
+
vt 0.2475 0.5417 0.0000
|
|
822
|
+
vt 0.1628 0.6457 0.0000
|
|
823
|
+
vt 0.1626 0.5418 0.0000
|
|
824
|
+
vt 0.3598 0.5418 0.0000
|
|
825
|
+
vt 0.3596 0.6570 0.0000
|
|
826
|
+
vt 0.4144 0.5416 0.0000
|
|
827
|
+
vt 0.4143 0.6613 0.0000
|
|
828
|
+
vt 0.4522 0.5415 0.0000
|
|
829
|
+
vt 0.4519 0.6633 0.0000
|
|
830
|
+
vt 0.9501 0.5408 0.0000
|
|
831
|
+
vt 0.9502 0.6448 0.0000
|
|
832
|
+
vt 0.2519 0.7005 0.0000
|
|
833
|
+
vt 0.3148 0.7031 0.0000
|
|
834
|
+
vt 0.3144 0.6658 0.0000
|
|
835
|
+
vt 0.2515 0.6631 0.0000
|
|
836
|
+
vt 0.3626 0.7133 0.0000
|
|
837
|
+
vt 0.3622 0.6759 0.0000
|
|
838
|
+
vt 0.4197 0.7185 0.0000
|
|
839
|
+
vt 0.4194 0.6812 0.0000
|
|
840
|
+
vt 0.4522 0.7209 0.0000
|
|
841
|
+
vt 0.4518 0.6836 0.0000
|
|
842
|
+
vt 0.4798 0.7234 0.0000
|
|
843
|
+
vt 0.4795 0.6861 0.0000
|
|
844
|
+
vt 0.0142 0.6459 0.0000
|
|
845
|
+
vt 0.0160 0.5419 0.0000
|
|
846
|
+
vt 0.6444 0.7033 0.0000
|
|
847
|
+
vt 0.7072 0.7007 0.0000
|
|
848
|
+
vt 0.7071 0.6634 0.0000
|
|
849
|
+
vt 0.6442 0.6660 0.0000
|
|
850
|
+
vt 0.5967 0.7134 0.0000
|
|
851
|
+
vt 0.5965 0.6761 0.0000
|
|
852
|
+
vt 0.5397 0.7186 0.0000
|
|
853
|
+
vt 0.5395 0.6813 0.0000
|
|
854
|
+
vt 0.5073 0.7209 0.0000
|
|
855
|
+
vt 0.5071 0.6836 0.0000
|
|
856
|
+
vt 0.1376 0.8475 0.0000
|
|
857
|
+
vt 0.2215 0.8831 0.0000
|
|
858
|
+
vt 0.2222 0.9224 0.0000
|
|
859
|
+
vt 0.1383 0.8869 0.0000
|
|
860
|
+
vt 0.2862 0.9096 0.0000
|
|
861
|
+
vt 0.2869 0.9489 0.0000
|
|
862
|
+
vt 0.3369 0.9293 0.0000
|
|
863
|
+
vt 0.3376 0.9686 0.0000
|
|
864
|
+
vt 0.3898 0.9467 0.0000
|
|
865
|
+
vt 0.3989 0.9893 0.0000
|
|
866
|
+
vt 0.4364 0.9496 0.0000
|
|
867
|
+
vt 0.4370 0.9890 0.0000
|
|
868
|
+
vt 0.4689 0.9514 0.0000
|
|
869
|
+
vt 0.4695 0.9886 0.0000
|
|
870
|
+
vt 0.5015 0.9489 0.0000
|
|
871
|
+
vt 0.5014 0.9883 0.0000
|
|
872
|
+
vt 0.5485 0.9461 0.0000
|
|
873
|
+
vt 0.5386 0.9886 0.0000
|
|
874
|
+
vt 0.6024 0.9297 0.0000
|
|
875
|
+
vt 0.6000 0.9690 0.0000
|
|
876
|
+
vt 0.6546 0.9116 0.0000
|
|
877
|
+
vt 0.6514 0.9508 0.0000
|
|
878
|
+
vt 0.7217 0.8877 0.0000
|
|
879
|
+
vt 0.7179 0.9270 0.0000
|
|
880
|
+
vt 0.8091 0.8562 0.0000
|
|
881
|
+
vt 0.8049 0.8954 0.0000
|
|
882
|
+
vt 0.9376 0.8026 0.0000
|
|
883
|
+
vt 0.9333 0.8418 0.0000
|
|
884
|
+
vt 0.1175 0.2765 0.0000
|
|
885
|
+
vt 0.1172 0.2184 0.0000
|
|
886
|
+
vt 0.0528 0.2186 0.0000
|
|
887
|
+
vt 0.0531 0.2766 0.0000
|
|
888
|
+
vt 0.0149 0.7906 0.0000
|
|
889
|
+
vt 0.0156 0.8299 0.0000
|
|
890
|
+
vt 0.1171 0.1374 0.0000
|
|
891
|
+
vt 0.0526 0.1376 0.0000
|
|
892
|
+
vt 0.1279 0.1213 0.0000
|
|
893
|
+
vt 0.0641 0.1216 0.0000
|
|
894
|
+
vt 0.0639 0.0185 0.0000
|
|
895
|
+
vt 0.1276 0.0182 0.0000
|
|
896
|
+
vt 0.0533 0.3601 0.0000
|
|
897
|
+
vt 0.1177 0.3599 0.0000
|
|
898
|
+
vt 0.1175 0.2816 0.0000
|
|
899
|
+
vt 0.0531 0.2818 0.0000
|
|
900
|
+
vt 0.5233 0.0680 0.0000
|
|
901
|
+
vt 0.5233 0.0146 0.0000
|
|
902
|
+
vt 0.4613 0.0144 0.0000
|
|
903
|
+
vt 0.4612 0.0679 0.0000
|
|
904
|
+
vt 0.5230 0.2785 0.0000
|
|
905
|
+
vt 0.5231 0.1970 0.0000
|
|
906
|
+
vt 0.4611 0.1969 0.0000
|
|
907
|
+
vt 0.4610 0.2783 0.0000
|
|
908
|
+
vt 0.5232 0.1436 0.0000
|
|
909
|
+
vt 0.4612 0.1434 0.0000
|
|
910
|
+
vt 0.1397 0.8448 0.0000
|
|
911
|
+
vt 0.2234 0.8802 0.0000
|
|
912
|
+
vt 0.2877 0.9066 0.0000
|
|
913
|
+
vt 0.3381 0.9262 0.0000
|
|
914
|
+
vt 0.3905 0.9436 0.0000
|
|
915
|
+
vt 0.4365 0.9465 0.0000
|
|
916
|
+
vt 0.4689 0.9482 0.0000
|
|
917
|
+
vt 0.5015 0.9458 0.0000
|
|
918
|
+
vt 0.5478 0.9429 0.0000
|
|
919
|
+
vt 0.6014 0.9266 0.0000
|
|
920
|
+
vt 0.6534 0.9085 0.0000
|
|
921
|
+
vt 0.7201 0.8848 0.0000
|
|
922
|
+
vt 0.8072 0.8534 0.0000
|
|
923
|
+
vt 0.9356 0.7998 0.0000
|
|
924
|
+
vt 0.0479 0.2818 0.0000
|
|
925
|
+
vt 0.0481 0.3601 0.0000
|
|
926
|
+
vt 0.7895 0.7049 0.0000
|
|
927
|
+
vt 0.9144 0.7056 0.0000
|
|
928
|
+
vt 0.7072 0.7044 0.0000
|
|
929
|
+
vt 0.6444 0.7070 0.0000
|
|
930
|
+
vt 0.5967 0.7172 0.0000
|
|
931
|
+
vt 0.5397 0.7224 0.0000
|
|
932
|
+
vt 0.5073 0.7247 0.0000
|
|
933
|
+
vt 0.4798 0.7272 0.0000
|
|
934
|
+
vt 0.4522 0.7246 0.0000
|
|
935
|
+
vt 0.4198 0.7222 0.0000
|
|
936
|
+
vt 0.3627 0.7170 0.0000
|
|
937
|
+
vt 0.3149 0.7068 0.0000
|
|
938
|
+
vt 0.2520 0.7042 0.0000
|
|
939
|
+
vt 0.1697 0.7047 0.0000
|
|
940
|
+
vt 0.0466 0.7053 0.0000
|
|
941
|
+
vt 0.0171 0.7879 0.0000
|
|
942
|
+
vt 0.2846 0.0635 0.0000
|
|
943
|
+
vt 0.3350 0.1014 0.0000
|
|
944
|
+
vt 0.2869 0.0984 0.0000
|
|
945
|
+
vt 0.2402 0.0697 0.0000
|
|
946
|
+
vt 0.3662 0.1505 0.0000
|
|
947
|
+
vt 0.3291 0.1463 0.0000
|
|
948
|
+
vt 0.3743 0.1993 0.0000
|
|
949
|
+
vt 0.3449 0.1967 0.0000
|
|
950
|
+
vt 0.3741 0.2313 0.0000
|
|
951
|
+
vt 0.3456 0.2288 0.0000
|
|
952
|
+
vt 0.9520 0.3232 0.0000
|
|
953
|
+
vt 0.9511 0.3553 0.0000
|
|
954
|
+
vt 0.8725 0.3642 0.0000
|
|
955
|
+
vt 0.8736 0.3287 0.0000
|
|
956
|
+
vt 0.7872 0.3718 0.0000
|
|
957
|
+
vt 0.7856 0.3328 0.0000
|
|
958
|
+
vt 0.7246 0.3759 0.0000
|
|
959
|
+
vt 0.7245 0.3364 0.0000
|
|
960
|
+
vt 0.6884 0.3767 0.0000
|
|
961
|
+
vt 0.6880 0.3399 0.0000
|
|
962
|
+
vt 0.9747 0.5705 0.0000
|
|
963
|
+
vt 0.9874 0.5713 0.0000
|
|
964
|
+
vt 0.9855 0.6101 0.0000
|
|
965
|
+
vt 0.9700 0.6102 0.0000
|
|
966
|
+
vt 0.9823 0.6717 0.0000
|
|
967
|
+
vt 0.9673 0.6738 0.0000
|
|
968
|
+
vt 0.9698 0.7513 0.0000
|
|
969
|
+
vt 0.9586 0.7517 0.0000
|
|
970
|
+
vt 0.9671 0.8478 0.0000
|
|
971
|
+
vt 0.9532 0.8490 0.0000
|
|
972
|
+
vt 0.2458 0.0054 0.0000
|
|
973
|
+
vt 0.2902 0.0130 0.0000
|
|
974
|
+
vt 0.9667 0.9098 0.0000
|
|
975
|
+
vt 0.9528 0.9110 0.0000
|
|
976
|
+
vt 0.2569 0.3810 0.0000
|
|
977
|
+
vt 0.2142 0.3671 0.0000
|
|
978
|
+
vt 0.2651 0.3469 0.0000
|
|
979
|
+
vt 0.3131 0.3524 0.0000
|
|
980
|
+
vt 0.3151 0.3071 0.0000
|
|
981
|
+
vt 0.3523 0.3095 0.0000
|
|
982
|
+
vt 0.3393 0.2602 0.0000
|
|
983
|
+
vt 0.3688 0.2628 0.0000
|
|
984
|
+
vt 0.4237 0.3291 0.0000
|
|
985
|
+
vt 0.5022 0.3328 0.0000
|
|
986
|
+
vt 0.5041 0.3683 0.0000
|
|
987
|
+
vt 0.4253 0.3612 0.0000
|
|
988
|
+
vt 0.5903 0.3350 0.0000
|
|
989
|
+
vt 0.5895 0.3740 0.0000
|
|
990
|
+
vt 0.6514 0.3372 0.0000
|
|
991
|
+
vt 0.6522 0.3767 0.0000
|
|
992
|
+
vt 0.9748 0.5306 0.0000
|
|
993
|
+
vt 0.9902 0.5325 0.0000
|
|
994
|
+
vt 0.9790 0.4672 0.0000
|
|
995
|
+
vt 0.9938 0.4708 0.0000
|
|
996
|
+
vt 0.9769 0.3892 0.0000
|
|
997
|
+
vt 0.9881 0.3902 0.0000
|
|
998
|
+
vt 0.9762 0.2924 0.0000
|
|
999
|
+
vt 0.9863 0.2934 0.0000
|
|
1000
|
+
vt 0.2535 0.4317 0.0000
|
|
1001
|
+
vt 0.2085 0.4314 0.0000
|
|
1002
|
+
vt 0.9763 0.2308 0.0000
|
|
1003
|
+
vt 0.9863 0.2315 0.0000
|
|
1004
|
+
vt 0.9781 0.1864 0.0000
|
|
1005
|
+
vt 0.8088 0.1864 0.0000
|
|
1006
|
+
vt 0.8088 0.0170 0.0000
|
|
1007
|
+
vt 0.9781 0.0170 0.0000
|
|
1008
|
+
vt 0.7807 0.0185 0.0000
|
|
1009
|
+
vt 0.6794 0.0178 0.0000
|
|
1010
|
+
vt 0.7064 0.1575 0.0000
|
|
1011
|
+
vt 0.7912 0.1581 0.0000
|
|
1012
|
+
vt 0.6831 0.2968 0.0000
|
|
1013
|
+
vt 0.7779 0.2975 0.0000
|
|
1014
|
+
vt 0.6498 0.1633 0.0000
|
|
1015
|
+
vt 0.5711 0.1633 0.0000
|
|
1016
|
+
vt 0.5431 0.3053 0.0000
|
|
1017
|
+
vt 0.6371 0.3053 0.0000
|
|
1018
|
+
vt 0.5431 0.0214 0.0000
|
|
1019
|
+
vt 0.6371 0.0214 0.0000
|
|
1020
|
+
vt 0.3995 0.7402 0.0000
|
|
1021
|
+
vt 0.3720 0.7430 0.0000
|
|
1022
|
+
vt 0.4252 0.7378 0.0000
|
|
1023
|
+
vt 0.4506 0.7367 0.0000
|
|
1024
|
+
vt 0.6552 0.4343 0.0000
|
|
1025
|
+
vt 0.7180 0.4371 0.0000
|
|
1026
|
+
vt 0.8029 0.4370 0.0000
|
|
1027
|
+
vt 0.6060 0.4257 0.0000
|
|
1028
|
+
vt 0.5513 0.4214 0.0000
|
|
1029
|
+
vt 0.5137 0.4195 0.0000
|
|
1030
|
+
vt 0.4643 0.7356 0.0000
|
|
1031
|
+
vt 0.4838 0.4175 0.0000
|
|
1032
|
+
vt 0.5566 0.7439 0.0000
|
|
1033
|
+
vt 0.5290 0.7397 0.0000
|
|
1034
|
+
vt 0.5033 0.7375 0.0000
|
|
1035
|
+
vt 0.4780 0.7366 0.0000
|
|
1036
|
+
vt 0.2473 0.4377 0.0000
|
|
1037
|
+
vt 0.3107 0.4356 0.0000
|
|
1038
|
+
vt 0.1624 0.4378 0.0000
|
|
1039
|
+
vt 0.3600 0.4267 0.0000
|
|
1040
|
+
vt 0.4145 0.4219 0.0000
|
|
1041
|
+
vt 0.4525 0.4198 0.0000
|
|
1042
|
+
vt 0.9499 0.4368 0.0000
|
|
1043
|
+
vt 0.0139 0.4380 0.0000
|
|
1044
|
+
# 294 texture coords
|
|
1045
|
+
|
|
1046
|
+
o bridge
|
|
1047
|
+
g bridge
|
|
1048
|
+
f 1/1/1 2/2/1 3/3/1
|
|
1049
|
+
f 3/3/2 4/4/2 1/1/2
|
|
1050
|
+
f 3/3/3 2/2/3 5/5/3
|
|
1051
|
+
f 3/3/4 5/5/4 6/6/4
|
|
1052
|
+
f 3/3/5 6/6/5 7/7/5
|
|
1053
|
+
f 8/8/6 9/9/6 10/10/6
|
|
1054
|
+
f 10/10/6 11/11/6 8/8/6
|
|
1055
|
+
f 7/7/7 6/6/7 12/12/7
|
|
1056
|
+
f 12/12/8 13/13/8 7/7/8
|
|
1057
|
+
f 14/14/9 15/15/9 16/16/9
|
|
1058
|
+
f 16/16/10 5/17/10 14/14/10
|
|
1059
|
+
f 13/13/11 12/12/11 17/18/11
|
|
1060
|
+
f 17/18/12 18/19/12 13/13/12
|
|
1061
|
+
f 15/15/13 19/20/13 20/21/13
|
|
1062
|
+
f 20/21/14 16/16/14 15/15/14
|
|
1063
|
+
f 18/19/15 17/18/15 21/22/15
|
|
1064
|
+
f 21/22/16 22/23/16 18/19/16
|
|
1065
|
+
f 19/20/17 23/24/17 24/25/17
|
|
1066
|
+
f 24/25/18 20/21/18 19/20/18
|
|
1067
|
+
f 25/26/19 26/27/19 27/28/19
|
|
1068
|
+
f 27/28/19 28/29/19 25/26/19
|
|
1069
|
+
f 29/30/20 25/26/20 28/29/20
|
|
1070
|
+
f 28/29/20 30/31/20 29/30/20
|
|
1071
|
+
f 26/27/21 31/32/21 32/33/21
|
|
1072
|
+
f 32/33/22 27/28/22 26/27/22
|
|
1073
|
+
f 31/32/23 33/34/23 34/35/23
|
|
1074
|
+
f 34/35/23 32/33/23 31/32/23
|
|
1075
|
+
f 33/34/24 35/36/24 36/37/24
|
|
1076
|
+
f 36/37/24 34/35/24 33/34/24
|
|
1077
|
+
f 22/23/25 21/22/25 37/38/25
|
|
1078
|
+
f 37/38/25 38/39/25 22/23/25
|
|
1079
|
+
f 23/24/26 39/40/26 40/41/26
|
|
1080
|
+
f 40/41/26 24/25/26 23/24/26
|
|
1081
|
+
f 35/36/27 41/42/27 42/43/27
|
|
1082
|
+
f 42/43/28 36/37/28 35/36/28
|
|
1083
|
+
f 43/44/29 44/45/29 45/46/29
|
|
1084
|
+
f 45/46/29 46/47/29 43/44/29
|
|
1085
|
+
f 44/45/30 47/48/30 48/49/30
|
|
1086
|
+
f 44/45/31 48/49/31 49/50/31
|
|
1087
|
+
f 44/45/32 49/50/32 45/46/32
|
|
1088
|
+
f 50/51/33 51/52/33 52/53/33
|
|
1089
|
+
f 52/53/33 53/54/33 50/51/33
|
|
1090
|
+
f 47/48/34 54/55/34 55/56/34
|
|
1091
|
+
f 55/56/35 48/49/35 47/48/35
|
|
1092
|
+
f 49/57/36 56/58/36 57/59/36
|
|
1093
|
+
f 57/59/36 58/60/36 49/57/36
|
|
1094
|
+
f 54/55/37 59/61/37 60/62/37
|
|
1095
|
+
f 60/62/38 55/56/38 54/55/38
|
|
1096
|
+
f 56/58/39 61/63/39 62/64/39
|
|
1097
|
+
f 62/64/39 57/59/39 56/58/39
|
|
1098
|
+
f 59/61/40 63/65/40 64/66/40
|
|
1099
|
+
f 64/66/41 60/62/41 59/61/41
|
|
1100
|
+
f 61/63/42 65/67/42 66/68/42
|
|
1101
|
+
f 66/68/42 62/64/42 61/63/42
|
|
1102
|
+
f 67/69/43 68/70/43 69/71/43
|
|
1103
|
+
f 69/71/44 70/72/44 67/69/44
|
|
1104
|
+
f 70/72/45 69/71/45 71/73/45
|
|
1105
|
+
f 71/73/46 72/74/46 70/72/46
|
|
1106
|
+
f 73/75/47 74/76/47 68/70/47
|
|
1107
|
+
f 68/70/47 67/69/47 73/75/47
|
|
1108
|
+
f 75/77/48 76/78/48 74/76/48
|
|
1109
|
+
f 74/76/49 73/75/49 75/77/49
|
|
1110
|
+
f 77/79/50 78/80/50 76/78/50
|
|
1111
|
+
f 76/78/50 75/77/50 77/79/50
|
|
1112
|
+
f 63/65/51 38/39/51 37/38/51
|
|
1113
|
+
f 37/38/51 64/66/51 63/65/51
|
|
1114
|
+
f 65/67/52 40/41/52 39/40/52
|
|
1115
|
+
f 39/40/52 66/68/52 65/67/52
|
|
1116
|
+
f 42/43/53 41/42/53 78/80/53
|
|
1117
|
+
f 78/80/53 77/79/53 42/43/53
|
|
1118
|
+
f 29/30/54 30/31/54 79/81/54
|
|
1119
|
+
f 79/81/54 80/82/54 29/30/54
|
|
1120
|
+
f 81/83/55 82/84/55 83/85/55
|
|
1121
|
+
f 83/85/55 84/86/55 81/83/55
|
|
1122
|
+
f 8/8/56 81/83/56 84/86/56
|
|
1123
|
+
f 84/86/56 9/9/56 8/8/56
|
|
1124
|
+
f 82/84/57 85/87/57 86/88/57
|
|
1125
|
+
f 86/88/57 83/85/57 82/84/57
|
|
1126
|
+
f 85/87/58 87/89/58 88/90/58
|
|
1127
|
+
f 88/90/58 86/88/58 85/87/58
|
|
1128
|
+
f 87/89/59 89/91/59 90/92/59
|
|
1129
|
+
f 90/92/60 88/90/60 87/89/60
|
|
1130
|
+
f 89/91/61 91/93/61 92/94/61
|
|
1131
|
+
f 92/94/62 90/92/62 89/91/62
|
|
1132
|
+
f 93/95/63 94/96/63 72/74/63
|
|
1133
|
+
f 72/74/33 71/73/33 93/95/33
|
|
1134
|
+
f 95/97/44 96/98/44 97/99/44
|
|
1135
|
+
f 97/99/43 98/100/43 95/97/43
|
|
1136
|
+
f 96/98/46 53/54/46 52/53/46
|
|
1137
|
+
f 52/53/45 97/99/45 96/98/45
|
|
1138
|
+
f 99/101/47 95/97/47 98/100/47
|
|
1139
|
+
f 98/100/47 100/102/47 99/101/47
|
|
1140
|
+
f 101/103/64 99/101/64 100/102/64
|
|
1141
|
+
f 100/102/64 102/104/64 101/103/64
|
|
1142
|
+
f 103/105/65 101/103/65 102/104/65
|
|
1143
|
+
f 102/104/65 104/106/65 103/105/65
|
|
1144
|
+
f 91/93/65 103/105/65 104/106/65
|
|
1145
|
+
f 104/106/66 92/94/66 91/93/66
|
|
1146
|
+
f 105/107/2 106/108/2 107/109/2
|
|
1147
|
+
f 107/109/2 108/110/2 105/107/2
|
|
1148
|
+
f 106/108/67 109/111/67 110/112/67
|
|
1149
|
+
f 110/112/67 107/109/67 106/108/67
|
|
1150
|
+
f 109/111/68 111/113/68 112/114/68
|
|
1151
|
+
f 112/114/68 110/112/68 109/111/68
|
|
1152
|
+
f 111/113/69 113/115/69 114/116/69
|
|
1153
|
+
f 114/116/70 112/114/70 111/113/70
|
|
1154
|
+
f 113/115/71 115/117/71 116/118/71
|
|
1155
|
+
f 116/118/72 114/116/72 113/115/72
|
|
1156
|
+
f 115/117/73 117/119/73 118/120/73
|
|
1157
|
+
f 118/120/73 116/118/73 115/117/73
|
|
1158
|
+
f 117/119/74 119/121/74 120/122/74
|
|
1159
|
+
f 120/122/74 118/120/74 117/119/74
|
|
1160
|
+
f 119/121/75 121/123/75 122/124/75
|
|
1161
|
+
f 122/124/76 120/122/76 119/121/76
|
|
1162
|
+
f 121/123/77 123/125/77 124/126/77
|
|
1163
|
+
f 124/126/78 122/124/78 121/123/78
|
|
1164
|
+
f 123/125/79 125/127/79 126/128/79
|
|
1165
|
+
f 126/128/79 124/126/79 123/125/79
|
|
1166
|
+
f 125/127/80 127/129/80 128/130/80
|
|
1167
|
+
f 128/130/80 126/128/80 125/127/80
|
|
1168
|
+
f 127/129/81 129/131/81 130/132/81
|
|
1169
|
+
f 130/132/81 128/130/81 127/129/81
|
|
1170
|
+
f 129/131/81 131/133/81 132/134/81
|
|
1171
|
+
f 132/134/81 130/132/81 129/131/81
|
|
1172
|
+
f 133/135/82 134/136/82 135/137/82
|
|
1173
|
+
f 135/137/82 136/138/82 133/135/82
|
|
1174
|
+
f 93/139/83 71/107/83 52/110/83
|
|
1175
|
+
f 52/110/83 51/140/83 93/139/83
|
|
1176
|
+
f 71/107/83 69/108/83 97/109/83
|
|
1177
|
+
f 97/109/84 52/110/84 71/107/84
|
|
1178
|
+
f 69/108/85 68/111/85 98/112/85
|
|
1179
|
+
f 98/112/85 97/109/85 69/108/85
|
|
1180
|
+
f 68/111/86 74/113/86 100/114/86
|
|
1181
|
+
f 100/114/86 98/112/86 68/111/86
|
|
1182
|
+
f 74/113/87 76/115/87 102/116/87
|
|
1183
|
+
f 102/116/88 100/114/88 74/113/88
|
|
1184
|
+
f 76/115/89 78/117/89 104/118/89
|
|
1185
|
+
f 104/118/90 102/116/90 76/115/90
|
|
1186
|
+
f 78/117/91 41/119/91 92/120/91
|
|
1187
|
+
f 92/120/91 104/118/91 78/117/91
|
|
1188
|
+
f 41/119/92 35/121/92 90/122/92
|
|
1189
|
+
f 90/122/92 92/120/92 41/119/92
|
|
1190
|
+
f 35/121/93 33/123/93 88/124/93
|
|
1191
|
+
f 88/124/94 90/122/94 35/121/94
|
|
1192
|
+
f 33/123/95 31/125/95 86/126/95
|
|
1193
|
+
f 86/126/96 88/124/96 33/123/96
|
|
1194
|
+
f 31/125/97 26/127/97 83/128/97
|
|
1195
|
+
f 83/128/97 86/126/97 31/125/97
|
|
1196
|
+
f 26/127/98 25/129/98 84/130/98
|
|
1197
|
+
f 84/130/98 83/128/98 26/127/98
|
|
1198
|
+
f 25/129/84 29/131/84 9/132/84
|
|
1199
|
+
f 9/132/84 84/130/84 25/129/84
|
|
1200
|
+
f 29/131/84 80/133/84 10/134/84
|
|
1201
|
+
f 10/134/84 9/132/84 29/131/84
|
|
1202
|
+
f 137/136/99 138/135/99 139/138/99
|
|
1203
|
+
f 139/138/99 140/137/99 137/136/99
|
|
1204
|
+
f 141/139/2 105/107/2 108/110/2
|
|
1205
|
+
f 108/110/2 142/140/2 141/139/2
|
|
1206
|
+
f 93/141/83 51/142/83 135/137/83
|
|
1207
|
+
f 135/137/83 134/136/83 93/141/83
|
|
1208
|
+
f 143/143/100 144/144/100 145/145/100
|
|
1209
|
+
f 145/145/100 146/146/100 143/143/100
|
|
1210
|
+
f 132/147/81 131/148/81 147/149/81
|
|
1211
|
+
f 147/149/81 148/150/81 132/147/81
|
|
1212
|
+
f 141/148/2 142/147/2 149/150/2
|
|
1213
|
+
f 149/150/2 150/149/2 141/148/2
|
|
1214
|
+
f 151/145/101 152/146/101 153/143/101
|
|
1215
|
+
f 153/143/101 154/144/101 151/145/101
|
|
1216
|
+
f 10/142/84 80/141/84 137/136/84
|
|
1217
|
+
f 137/136/84 140/137/84 10/142/84
|
|
1218
|
+
f 51/151/102 50/152/102 144/153/102
|
|
1219
|
+
f 144/153/99 143/154/99 51/151/99
|
|
1220
|
+
f 50/155/29 136/156/29 145/157/29
|
|
1221
|
+
f 145/157/29 144/158/29 50/155/29
|
|
1222
|
+
f 136/156/82 135/159/82 146/160/82
|
|
1223
|
+
f 146/160/82 145/157/82 136/156/82
|
|
1224
|
+
f 135/159/83 51/151/83 143/154/83
|
|
1225
|
+
f 143/154/83 146/160/83 135/159/83
|
|
1226
|
+
f 11/152/103 10/151/103 152/154/103
|
|
1227
|
+
f 152/154/103 151/153/103 11/152/103
|
|
1228
|
+
f 10/151/104 140/159/104 153/160/104
|
|
1229
|
+
f 153/160/104 152/154/104 10/151/104
|
|
1230
|
+
f 140/159/99 139/156/99 154/157/99
|
|
1231
|
+
f 154/157/99 153/160/99 140/159/99
|
|
1232
|
+
f 139/156/105 11/155/105 151/158/105
|
|
1233
|
+
f 151/158/105 154/157/105 139/156/105
|
|
1234
|
+
f 4/161/106 3/162/106 106/108/106
|
|
1235
|
+
f 106/108/106 105/107/106 4/161/106
|
|
1236
|
+
f 3/162/107 7/163/107 109/111/107
|
|
1237
|
+
f 109/111/108 106/108/108 3/162/108
|
|
1238
|
+
f 7/163/109 13/164/109 111/113/109
|
|
1239
|
+
f 111/113/110 109/111/110 7/163/110
|
|
1240
|
+
f 13/164/111 18/165/111 113/115/111
|
|
1241
|
+
f 113/115/111 111/113/111 13/164/111
|
|
1242
|
+
f 18/165/112 22/166/112 115/117/112
|
|
1243
|
+
f 115/117/112 113/115/112 18/165/112
|
|
1244
|
+
f 22/166/113 38/167/113 117/119/113
|
|
1245
|
+
f 117/119/113 115/117/113 22/166/113
|
|
1246
|
+
f 38/167/114 63/168/114 119/121/114
|
|
1247
|
+
f 119/121/114 117/119/114 38/167/114
|
|
1248
|
+
f 63/168/115 59/169/115 121/123/115
|
|
1249
|
+
f 121/123/115 119/121/115 63/168/115
|
|
1250
|
+
f 59/169/116 54/170/116 123/125/116
|
|
1251
|
+
f 123/125/116 121/123/116 59/169/116
|
|
1252
|
+
f 54/170/117 47/171/117 125/127/117
|
|
1253
|
+
f 125/127/117 123/125/117 54/170/117
|
|
1254
|
+
f 47/171/118 44/172/118 127/129/118
|
|
1255
|
+
f 127/129/118 125/127/118 47/171/118
|
|
1256
|
+
f 44/172/119 43/173/119 129/131/119
|
|
1257
|
+
f 129/131/119 127/129/119 44/172/119
|
|
1258
|
+
f 43/173/120 46/174/120 131/133/120
|
|
1259
|
+
f 131/133/120 129/131/120 43/173/120
|
|
1260
|
+
f 133/135/103 136/138/103 148/150/103
|
|
1261
|
+
f 148/150/103 147/149/103 133/135/103
|
|
1262
|
+
f 136/175/100 50/176/100 132/147/100
|
|
1263
|
+
f 132/147/100 148/150/100 136/175/100
|
|
1264
|
+
f 50/51/121 53/54/121 130/177/121
|
|
1265
|
+
f 130/177/121 132/178/121 50/51/121
|
|
1266
|
+
f 53/54/45 96/98/45 128/179/45
|
|
1267
|
+
f 128/179/45 130/177/45 53/54/45
|
|
1268
|
+
f 96/98/44 95/97/44 126/180/44
|
|
1269
|
+
f 126/180/44 128/179/44 96/98/44
|
|
1270
|
+
f 95/97/122 99/101/122 124/181/122
|
|
1271
|
+
f 124/181/122 126/180/122 95/97/122
|
|
1272
|
+
f 99/101/123 101/103/123 122/182/123
|
|
1273
|
+
f 122/182/123 124/181/123 99/101/123
|
|
1274
|
+
f 101/103/66 103/105/66 120/183/66
|
|
1275
|
+
f 120/183/66 122/182/66 101/103/66
|
|
1276
|
+
f 103/105/66 91/93/66 118/184/66
|
|
1277
|
+
f 118/184/66 120/183/66 103/105/66
|
|
1278
|
+
f 91/93/61 89/91/61 116/185/61
|
|
1279
|
+
f 116/185/61 118/184/61 91/93/61
|
|
1280
|
+
f 89/91/124 87/89/124 114/186/124
|
|
1281
|
+
f 114/186/124 116/185/124 89/91/124
|
|
1282
|
+
f 87/89/125 85/87/125 112/187/125
|
|
1283
|
+
f 112/187/125 114/186/125 87/89/125
|
|
1284
|
+
f 85/87/22 82/84/22 110/188/22
|
|
1285
|
+
f 110/188/22 112/187/22 85/87/22
|
|
1286
|
+
f 82/84/19 81/83/19 107/189/19
|
|
1287
|
+
f 107/189/19 110/188/19 82/84/19
|
|
1288
|
+
f 81/83/20 8/8/20 108/190/20
|
|
1289
|
+
f 108/190/20 107/189/20 81/83/20
|
|
1290
|
+
f 8/8/54 11/11/54 142/191/54
|
|
1291
|
+
f 142/191/54 108/190/54 8/8/54
|
|
1292
|
+
f 11/176/100 139/175/100 149/150/100
|
|
1293
|
+
f 149/150/100 142/147/100 11/176/100
|
|
1294
|
+
f 139/138/99 138/135/99 150/149/99
|
|
1295
|
+
f 150/149/99 149/150/99 139/138/99
|
|
1296
|
+
f 1/192/126 4/161/126 105/107/126
|
|
1297
|
+
f 105/107/126 141/139/126 1/192/126
|
|
1298
|
+
f 155/193/127 156/194/127 157/195/127
|
|
1299
|
+
f 157/195/128 158/196/128 155/193/128
|
|
1300
|
+
f 156/194/129 159/197/129 160/198/129
|
|
1301
|
+
f 160/198/130 157/195/130 156/194/130
|
|
1302
|
+
f 159/197/131 161/199/131 162/200/131
|
|
1303
|
+
f 162/200/132 160/198/132 159/197/132
|
|
1304
|
+
f 161/199/133 163/201/133 164/202/133
|
|
1305
|
+
f 164/202/133 162/200/133 161/199/133
|
|
1306
|
+
f 165/203/134 158/204/134 157/205/134
|
|
1307
|
+
f 157/205/135 166/206/135 165/203/135
|
|
1308
|
+
f 166/206/136 157/205/136 160/207/136
|
|
1309
|
+
f 160/207/137 167/208/137 166/206/137
|
|
1310
|
+
f 167/208/138 160/207/138 162/209/138
|
|
1311
|
+
f 162/209/139 168/210/139 167/208/139
|
|
1312
|
+
f 168/210/140 162/209/140 164/211/140
|
|
1313
|
+
f 164/211/141 169/212/141 168/210/141
|
|
1314
|
+
f 170/213/142 163/214/142 161/215/142
|
|
1315
|
+
f 161/215/142 171/216/142 170/213/142
|
|
1316
|
+
f 171/216/143 161/215/143 159/217/143
|
|
1317
|
+
f 159/217/144 172/218/144 171/216/144
|
|
1318
|
+
f 172/218/145 159/217/145 156/219/145
|
|
1319
|
+
f 156/219/146 173/220/146 172/218/146
|
|
1320
|
+
f 173/220/147 156/219/147 155/221/147
|
|
1321
|
+
f 155/221/148 174/222/148 173/220/148
|
|
1322
|
+
f 158/196/149 175/223/149 176/224/149
|
|
1323
|
+
f 176/224/150 155/193/150 158/196/150
|
|
1324
|
+
f 155/221/151 176/225/151 177/226/151
|
|
1325
|
+
f 177/226/151 174/222/151 155/221/151
|
|
1326
|
+
f 178/227/152 179/228/152 180/229/152
|
|
1327
|
+
f 180/229/153 181/230/153 178/227/153
|
|
1328
|
+
f 181/230/154 180/229/154 182/231/154
|
|
1329
|
+
f 182/231/155 183/232/155 181/230/155
|
|
1330
|
+
f 183/232/156 182/231/156 184/233/156
|
|
1331
|
+
f 184/233/157 185/234/157 183/232/157
|
|
1332
|
+
f 185/234/158 184/233/158 164/202/158
|
|
1333
|
+
f 164/202/158 163/201/158 185/234/158
|
|
1334
|
+
f 186/235/159 187/236/159 180/237/159
|
|
1335
|
+
f 180/237/160 179/238/160 186/235/160
|
|
1336
|
+
f 187/236/161 188/239/161 182/240/161
|
|
1337
|
+
f 182/240/162 180/237/162 187/236/162
|
|
1338
|
+
f 188/239/163 189/241/163 184/242/163
|
|
1339
|
+
f 184/242/164 182/240/164 188/239/164
|
|
1340
|
+
f 189/241/165 169/212/165 164/211/165
|
|
1341
|
+
f 164/211/166 184/242/166 189/241/166
|
|
1342
|
+
f 170/213/167 190/243/167 185/244/167
|
|
1343
|
+
f 185/244/167 163/214/167 170/213/167
|
|
1344
|
+
f 190/243/168 191/245/168 183/246/168
|
|
1345
|
+
f 183/246/169 185/244/169 190/243/169
|
|
1346
|
+
f 191/245/170 192/247/170 181/248/170
|
|
1347
|
+
f 181/248/171 183/246/171 191/245/171
|
|
1348
|
+
f 192/247/172 193/249/172 178/250/172
|
|
1349
|
+
f 178/250/173 181/248/173 192/247/173
|
|
1350
|
+
f 179/228/174 178/227/174 194/251/174
|
|
1351
|
+
f 194/251/175 195/252/175 179/228/175
|
|
1352
|
+
f 178/250/176 193/249/176 196/253/176
|
|
1353
|
+
f 196/253/177 194/254/177 178/250/177
|
|
1354
|
+
f 197/255/61 198/256/61 199/257/61
|
|
1355
|
+
f 199/257/61 200/258/61 197/255/61
|
|
1356
|
+
f 201/259/178 202/260/178 203/261/178
|
|
1357
|
+
f 203/261/178 204/262/178 201/259/178
|
|
1358
|
+
f 204/262/179 203/261/179 198/263/179
|
|
1359
|
+
f 198/263/179 197/264/179 204/262/179
|
|
1360
|
+
f 203/265/180 205/266/180 199/267/180
|
|
1361
|
+
f 199/267/180 198/268/180 203/265/180
|
|
1362
|
+
f 206/260/181 207/259/181 208/262/181
|
|
1363
|
+
f 208/262/181 205/261/181 206/260/181
|
|
1364
|
+
f 205/261/182 208/262/182 200/264/182
|
|
1365
|
+
f 200/264/182 199/263/182 205/261/182
|
|
1366
|
+
f 207/269/183 201/270/183 204/265/183
|
|
1367
|
+
f 204/265/184 208/266/184 207/269/184
|
|
1368
|
+
f 208/266/185 204/265/185 197/268/185
|
|
1369
|
+
f 197/268/185 200/267/185 208/266/185
|
|
1370
|
+
f 209/258/61 210/255/61 211/256/61
|
|
1371
|
+
f 211/256/61 212/257/61 209/258/61
|
|
1372
|
+
f 213/259/186 214/262/186 215/261/186
|
|
1373
|
+
f 215/261/186 216/260/186 213/259/186
|
|
1374
|
+
f 214/262/187 209/264/187 212/263/187
|
|
1375
|
+
f 212/263/187 215/261/187 214/262/187
|
|
1376
|
+
f 215/265/180 212/268/180 211/267/180
|
|
1377
|
+
f 211/267/180 217/266/180 215/265/180
|
|
1378
|
+
f 218/260/188 217/261/188 219/262/188
|
|
1379
|
+
f 219/262/188 220/259/188 218/260/188
|
|
1380
|
+
f 217/261/189 211/263/189 210/264/189
|
|
1381
|
+
f 210/264/189 219/262/189 217/261/189
|
|
1382
|
+
f 220/269/184 219/266/184 214/265/184
|
|
1383
|
+
f 214/265/183 213/270/183 220/269/183
|
|
1384
|
+
f 219/266/185 210/267/185 209/268/185
|
|
1385
|
+
f 209/268/185 214/265/185 219/266/185
|
|
1386
|
+
f 221/1/83 222/4/83 223/3/83
|
|
1387
|
+
f 223/3/190 224/2/190 221/1/190
|
|
1388
|
+
f 223/3/191 225/7/191 226/6/191
|
|
1389
|
+
f 223/3/192 226/6/192 227/5/192
|
|
1390
|
+
f 223/3/193 227/5/193 224/2/193
|
|
1391
|
+
f 228/8/194 229/11/194 230/10/194
|
|
1392
|
+
f 230/10/194 231/9/194 228/8/194
|
|
1393
|
+
f 225/7/195 232/13/195 233/12/195
|
|
1394
|
+
f 233/12/196 226/6/196 225/7/196
|
|
1395
|
+
f 234/271/10 15/15/10 14/14/10
|
|
1396
|
+
f 14/14/9 227/272/9 234/271/9
|
|
1397
|
+
f 232/13/197 235/19/197 236/18/197
|
|
1398
|
+
f 236/18/198 233/12/198 232/13/198
|
|
1399
|
+
f 237/273/14 19/20/14 15/15/14
|
|
1400
|
+
f 15/15/13 234/271/13 237/273/13
|
|
1401
|
+
f 235/19/199 238/23/199 239/22/199
|
|
1402
|
+
f 239/22/200 236/18/200 235/19/200
|
|
1403
|
+
f 240/274/18 23/24/18 19/20/18
|
|
1404
|
+
f 19/20/17 237/273/17 240/274/17
|
|
1405
|
+
f 27/28/201 241/275/201 242/276/201
|
|
1406
|
+
f 242/276/19 28/29/19 27/28/19
|
|
1407
|
+
f 28/29/20 242/276/20 243/277/20
|
|
1408
|
+
f 243/277/202 30/31/202 28/29/202
|
|
1409
|
+
f 32/33/22 244/278/22 241/275/22
|
|
1410
|
+
f 241/275/21 27/28/21 32/33/21
|
|
1411
|
+
f 34/35/203 245/279/203 244/278/203
|
|
1412
|
+
f 244/278/203 32/33/203 34/35/203
|
|
1413
|
+
f 36/37/204 246/280/204 245/279/204
|
|
1414
|
+
f 245/279/204 34/35/204 36/37/204
|
|
1415
|
+
f 238/23/205 247/39/205 248/38/205
|
|
1416
|
+
f 248/38/205 239/22/205 238/23/205
|
|
1417
|
+
f 249/281/206 39/40/206 23/24/206
|
|
1418
|
+
f 23/24/206 240/274/206 249/281/206
|
|
1419
|
+
f 42/43/27 250/282/27 246/280/27
|
|
1420
|
+
f 246/280/27 36/37/27 42/43/27
|
|
1421
|
+
f 251/44/83 252/47/83 253/46/83
|
|
1422
|
+
f 253/46/83 254/45/83 251/44/83
|
|
1423
|
+
f 254/45/207 253/46/207 255/50/207
|
|
1424
|
+
f 254/45/208 255/50/208 256/49/208
|
|
1425
|
+
f 254/45/209 256/49/209 257/48/209
|
|
1426
|
+
f 258/51/121 259/54/121 260/53/121
|
|
1427
|
+
f 260/53/121 261/52/121 258/51/121
|
|
1428
|
+
f 257/48/210 256/49/210 262/56/210
|
|
1429
|
+
f 262/56/211 263/55/211 257/48/211
|
|
1430
|
+
f 255/283/36 58/60/36 57/59/36
|
|
1431
|
+
f 57/59/212 264/284/212 255/283/212
|
|
1432
|
+
f 263/55/213 262/56/213 265/62/213
|
|
1433
|
+
f 265/62/214 266/61/214 263/55/214
|
|
1434
|
+
f 264/284/215 57/59/215 62/64/215
|
|
1435
|
+
f 62/64/215 267/285/215 264/284/215
|
|
1436
|
+
f 266/61/216 265/62/216 268/66/216
|
|
1437
|
+
f 268/66/217 269/65/217 266/61/217
|
|
1438
|
+
f 267/285/218 62/64/218 66/68/218
|
|
1439
|
+
f 66/68/218 270/286/218 267/285/218
|
|
1440
|
+
f 271/287/44 272/288/44 67/69/44
|
|
1441
|
+
f 67/69/44 70/72/44 271/287/44
|
|
1442
|
+
f 273/289/45 271/287/45 70/72/45
|
|
1443
|
+
f 70/72/45 72/74/45 273/289/45
|
|
1444
|
+
f 272/288/122 274/290/122 73/75/122
|
|
1445
|
+
f 73/75/122 67/69/122 272/288/122
|
|
1446
|
+
f 274/290/48 275/291/48 75/77/48
|
|
1447
|
+
f 75/77/48 73/75/48 274/290/48
|
|
1448
|
+
f 275/291/50 276/292/50 77/79/50
|
|
1449
|
+
f 77/79/50 75/77/50 275/291/50
|
|
1450
|
+
f 269/65/219 268/66/219 248/38/219
|
|
1451
|
+
f 248/38/219 247/39/219 269/65/219
|
|
1452
|
+
f 270/286/220 66/68/220 39/40/220
|
|
1453
|
+
f 39/40/220 249/281/220 270/286/220
|
|
1454
|
+
f 276/292/53 250/282/53 42/43/53
|
|
1455
|
+
f 42/43/53 77/79/53 276/292/53
|
|
1456
|
+
f 243/277/54 277/293/54 79/81/54
|
|
1457
|
+
f 79/81/221 30/31/221 243/277/221
|
|
1458
|
+
f 278/85/222 279/84/222 280/83/222
|
|
1459
|
+
f 280/83/222 281/86/222 278/85/222
|
|
1460
|
+
f 281/86/223 280/83/223 228/8/223
|
|
1461
|
+
f 228/8/223 231/9/223 281/86/223
|
|
1462
|
+
f 282/88/224 283/87/224 279/84/224
|
|
1463
|
+
f 279/84/224 278/85/224 282/88/224
|
|
1464
|
+
f 284/90/225 285/89/225 283/87/225
|
|
1465
|
+
f 283/87/225 282/88/225 284/90/225
|
|
1466
|
+
f 286/92/124 287/91/124 285/89/124
|
|
1467
|
+
f 285/89/226 284/90/226 286/92/226
|
|
1468
|
+
f 288/94/61 289/93/61 287/91/61
|
|
1469
|
+
f 287/91/61 286/92/61 288/94/61
|
|
1470
|
+
f 290/294/121 273/289/121 72/74/121
|
|
1471
|
+
f 72/74/227 94/96/227 290/294/227
|
|
1472
|
+
f 291/99/44 292/98/44 293/97/44
|
|
1473
|
+
f 293/97/44 294/100/44 291/99/44
|
|
1474
|
+
f 260/53/45 259/54/45 292/98/45
|
|
1475
|
+
f 292/98/45 291/99/45 260/53/45
|
|
1476
|
+
f 294/100/122 293/97/122 295/101/122
|
|
1477
|
+
f 295/101/122 296/102/122 294/100/122
|
|
1478
|
+
f 296/102/123 295/101/123 297/103/123
|
|
1479
|
+
f 297/103/123 298/104/123 296/102/123
|
|
1480
|
+
f 298/104/66 297/103/66 299/105/66
|
|
1481
|
+
f 299/105/66 300/106/66 298/104/66
|
|
1482
|
+
f 300/106/66 299/105/66 289/93/66
|
|
1483
|
+
f 289/93/66 288/94/66 300/106/66
|
|
1484
|
+
f 301/131/228 302/132/228 303/130/228
|
|
1485
|
+
f 303/130/228 304/129/228 301/131/228
|
|
1486
|
+
f 304/129/229 303/130/229 305/128/229
|
|
1487
|
+
f 305/128/229 306/127/229 304/129/229
|
|
1488
|
+
f 306/127/230 305/128/230 307/126/230
|
|
1489
|
+
f 307/126/230 308/125/230 306/127/230
|
|
1490
|
+
f 308/125/231 307/126/231 309/124/231
|
|
1491
|
+
f 309/124/232 310/123/232 308/125/232
|
|
1492
|
+
f 310/123/233 309/124/233 311/122/233
|
|
1493
|
+
f 311/122/89 312/121/89 310/123/89
|
|
1494
|
+
f 312/121/91 311/122/91 313/120/91
|
|
1495
|
+
f 313/120/91 314/119/91 312/121/91
|
|
1496
|
+
f 314/119/92 313/120/92 315/118/92
|
|
1497
|
+
f 315/118/92 316/117/92 314/119/92
|
|
1498
|
+
f 316/117/94 315/118/94 317/116/94
|
|
1499
|
+
f 317/116/234 318/115/234 316/117/234
|
|
1500
|
+
f 318/115/235 317/116/235 319/114/235
|
|
1501
|
+
f 319/114/236 320/113/236 318/115/236
|
|
1502
|
+
f 320/113/237 319/114/237 321/112/237
|
|
1503
|
+
f 321/112/237 322/111/237 320/113/237
|
|
1504
|
+
f 322/111/238 321/112/238 323/109/238
|
|
1505
|
+
f 323/109/238 324/108/238 322/111/238
|
|
1506
|
+
f 324/108/239 323/109/239 325/110/239
|
|
1507
|
+
f 325/110/239 326/107/239 324/108/239
|
|
1508
|
+
f 326/107/239 325/110/239 327/140/239
|
|
1509
|
+
f 327/140/239 328/139/239 326/107/239
|
|
1510
|
+
f 329/135/103 330/138/103 331/137/103
|
|
1511
|
+
f 331/137/82 332/136/82 329/135/82
|
|
1512
|
+
f 290/139/29 261/140/29 260/110/29
|
|
1513
|
+
f 260/110/29 273/107/29 290/139/29
|
|
1514
|
+
f 273/107/29 260/110/29 291/109/29
|
|
1515
|
+
f 291/109/29 271/108/29 273/107/29
|
|
1516
|
+
f 271/108/240 291/109/240 294/112/240
|
|
1517
|
+
f 294/112/240 272/111/240 271/108/240
|
|
1518
|
+
f 272/111/241 294/112/241 296/114/241
|
|
1519
|
+
f 296/114/241 274/113/241 272/111/241
|
|
1520
|
+
f 274/113/242 296/114/242 298/116/242
|
|
1521
|
+
f 298/116/243 275/115/243 274/113/243
|
|
1522
|
+
f 275/115/244 298/116/244 300/118/244
|
|
1523
|
+
f 300/118/71 276/117/71 275/115/71
|
|
1524
|
+
f 276/117/73 300/118/73 288/120/73
|
|
1525
|
+
f 288/120/73 250/119/73 276/117/73
|
|
1526
|
+
f 250/119/74 288/120/74 286/122/74
|
|
1527
|
+
f 286/122/74 246/121/74 250/119/74
|
|
1528
|
+
f 246/121/76 286/122/76 284/124/76
|
|
1529
|
+
f 284/124/245 245/123/245 246/121/245
|
|
1530
|
+
f 245/123/246 284/124/246 282/126/246
|
|
1531
|
+
f 282/126/247 244/125/247 245/123/247
|
|
1532
|
+
f 244/125/248 282/126/248 278/128/248
|
|
1533
|
+
f 278/128/248 241/127/248 244/125/248
|
|
1534
|
+
f 241/127/249 278/128/249 281/130/249
|
|
1535
|
+
f 281/130/249 242/129/249 241/127/249
|
|
1536
|
+
f 242/129/29 281/130/29 231/132/29
|
|
1537
|
+
f 231/132/29 243/131/29 242/129/29
|
|
1538
|
+
f 243/131/29 231/132/29 230/134/29
|
|
1539
|
+
f 230/134/29 277/133/29 243/131/29
|
|
1540
|
+
f 333/136/102 334/137/102 335/138/102
|
|
1541
|
+
f 335/138/102 336/135/102 333/136/102
|
|
1542
|
+
f 337/133/228 338/134/228 302/132/228
|
|
1543
|
+
f 302/132/228 301/131/228 337/133/228
|
|
1544
|
+
f 290/141/29 332/136/29 331/137/29
|
|
1545
|
+
f 331/137/29 261/142/29 290/141/29
|
|
1546
|
+
f 339/144/100 340/145/100 341/146/100
|
|
1547
|
+
f 341/146/100 342/143/100 339/144/100
|
|
1548
|
+
f 327/147/239 343/150/239 344/149/239
|
|
1549
|
+
f 344/149/239 328/148/239 327/147/239
|
|
1550
|
+
f 337/148/228 345/149/228 346/150/228
|
|
1551
|
+
f 346/150/228 338/147/228 337/148/228
|
|
1552
|
+
f 347/146/250 348/143/250 349/144/250
|
|
1553
|
+
f 349/144/250 350/145/250 347/146/250
|
|
1554
|
+
f 230/142/251 334/137/251 333/136/251
|
|
1555
|
+
f 333/136/251 277/141/251 230/142/251
|
|
1556
|
+
f 261/151/99 339/154/99 342/153/99
|
|
1557
|
+
f 342/153/99 258/152/99 261/151/99
|
|
1558
|
+
f 258/155/83 342/158/83 341/157/83
|
|
1559
|
+
f 341/157/83 330/156/83 258/155/83
|
|
1560
|
+
f 330/156/82 341/157/82 340/160/82
|
|
1561
|
+
f 340/160/103 331/159/103 330/156/103
|
|
1562
|
+
f 331/159/29 340/160/29 339/154/29
|
|
1563
|
+
f 339/154/29 261/151/29 331/159/29
|
|
1564
|
+
f 229/152/82 347/153/82 350/154/82
|
|
1565
|
+
f 350/154/82 230/151/82 229/152/82
|
|
1566
|
+
f 230/151/252 350/154/252 349/160/252
|
|
1567
|
+
f 349/160/252 334/159/252 230/151/252
|
|
1568
|
+
f 334/159/102 349/160/102 348/157/102
|
|
1569
|
+
f 348/157/102 335/156/102 334/159/102
|
|
1570
|
+
f 335/156/253 348/157/253 347/158/253
|
|
1571
|
+
f 347/158/253 229/155/253 335/156/253
|
|
1572
|
+
f 222/173/254 301/131/254 304/129/254
|
|
1573
|
+
f 304/129/254 223/172/254 222/173/254
|
|
1574
|
+
f 223/172/107 304/129/107 306/127/107
|
|
1575
|
+
f 306/127/107 225/171/107 223/172/107
|
|
1576
|
+
f 225/171/110 306/127/110 308/125/110
|
|
1577
|
+
f 308/125/110 232/170/110 225/171/110
|
|
1578
|
+
f 232/170/255 308/125/255 310/123/255
|
|
1579
|
+
f 310/123/255 235/169/255 232/170/255
|
|
1580
|
+
f 235/169/256 310/123/256 312/121/256
|
|
1581
|
+
f 312/121/256 238/168/256 235/169/256
|
|
1582
|
+
f 238/168/257 312/121/257 314/119/257
|
|
1583
|
+
f 314/119/257 247/167/257 238/168/257
|
|
1584
|
+
f 247/167/258 314/119/258 316/117/258
|
|
1585
|
+
f 316/117/258 269/166/258 247/167/258
|
|
1586
|
+
f 269/166/259 316/117/259 318/115/259
|
|
1587
|
+
f 318/115/259 266/165/259 269/166/259
|
|
1588
|
+
f 266/165/260 318/115/260 320/113/260
|
|
1589
|
+
f 320/113/260 263/164/260 266/165/260
|
|
1590
|
+
f 263/164/261 320/113/261 322/111/261
|
|
1591
|
+
f 322/111/261 257/163/261 263/164/261
|
|
1592
|
+
f 257/163/262 322/111/262 324/108/262
|
|
1593
|
+
f 324/108/262 254/162/262 257/163/262
|
|
1594
|
+
f 254/162/263 324/108/263 326/107/263
|
|
1595
|
+
f 326/107/263 251/161/263 254/162/263
|
|
1596
|
+
f 251/161/264 326/107/264 328/139/264
|
|
1597
|
+
f 328/139/264 252/192/264 251/161/264
|
|
1598
|
+
f 329/135/82 344/149/82 343/150/82
|
|
1599
|
+
f 343/150/82 330/138/82 329/135/82
|
|
1600
|
+
f 330/175/265 343/150/265 327/147/265
|
|
1601
|
+
f 327/147/265 258/176/265 330/175/265
|
|
1602
|
+
f 258/51/33 327/178/33 325/177/33
|
|
1603
|
+
f 325/177/33 259/54/33 258/51/33
|
|
1604
|
+
f 259/54/46 325/177/46 323/179/46
|
|
1605
|
+
f 323/179/46 292/98/46 259/54/46
|
|
1606
|
+
f 292/98/43 323/179/43 321/180/43
|
|
1607
|
+
f 321/180/43 293/97/43 292/98/43
|
|
1608
|
+
f 293/97/47 321/180/47 319/181/47
|
|
1609
|
+
f 319/181/47 295/101/47 293/97/47
|
|
1610
|
+
f 295/101/64 319/181/64 317/182/64
|
|
1611
|
+
f 317/182/123 297/103/123 295/101/123
|
|
1612
|
+
f 297/103/66 317/182/66 315/183/66
|
|
1613
|
+
f 315/183/66 299/105/66 297/103/66
|
|
1614
|
+
f 299/105/66 315/183/66 313/184/66
|
|
1615
|
+
f 313/184/65 289/93/65 299/105/65
|
|
1616
|
+
f 289/93/62 313/184/62 311/185/62
|
|
1617
|
+
f 311/185/62 287/91/62 289/93/62
|
|
1618
|
+
f 287/91/59 311/185/59 309/186/59
|
|
1619
|
+
f 309/186/124 285/89/124 287/91/124
|
|
1620
|
+
f 285/89/125 309/186/125 307/187/125
|
|
1621
|
+
f 307/187/266 283/87/266 285/89/266
|
|
1622
|
+
f 283/87/21 307/187/21 305/188/21
|
|
1623
|
+
f 305/188/22 279/84/22 283/87/22
|
|
1624
|
+
f 279/84/19 305/188/19 303/189/19
|
|
1625
|
+
f 303/189/201 280/83/201 279/84/201
|
|
1626
|
+
f 280/83/202 303/189/202 302/190/202
|
|
1627
|
+
f 302/190/202 228/8/202 280/83/202
|
|
1628
|
+
f 228/8/221 302/190/221 338/191/221
|
|
1629
|
+
f 338/191/221 229/11/221 228/8/221
|
|
1630
|
+
f 229/176/265 338/147/265 346/150/265
|
|
1631
|
+
f 346/150/265 335/175/265 229/176/265
|
|
1632
|
+
f 335/138/102 346/150/102 345/149/102
|
|
1633
|
+
f 345/149/102 336/135/102 335/138/102
|
|
1634
|
+
f 221/174/267 337/133/267 301/131/267
|
|
1635
|
+
f 301/131/267 222/173/267 221/174/267
|
|
1636
|
+
f 351/193/268 352/196/268 353/195/268
|
|
1637
|
+
f 353/195/269 354/194/269 351/193/269
|
|
1638
|
+
f 354/194/270 353/195/270 355/198/270
|
|
1639
|
+
f 355/198/271 356/197/271 354/194/271
|
|
1640
|
+
f 356/197/272 355/198/272 357/200/272
|
|
1641
|
+
f 357/200/273 358/199/273 356/197/273
|
|
1642
|
+
f 358/199/274 357/200/274 359/202/274
|
|
1643
|
+
f 359/202/274 360/201/274 358/199/274
|
|
1644
|
+
f 361/203/275 362/206/275 353/205/275
|
|
1645
|
+
f 353/205/276 352/204/276 361/203/276
|
|
1646
|
+
f 362/206/277 363/208/277 355/207/277
|
|
1647
|
+
f 355/207/278 353/205/278 362/206/278
|
|
1648
|
+
f 363/208/279 364/210/279 357/209/279
|
|
1649
|
+
f 357/209/280 355/207/280 363/208/280
|
|
1650
|
+
f 364/210/281 365/212/281 359/211/281
|
|
1651
|
+
f 359/211/282 357/209/282 364/210/282
|
|
1652
|
+
f 366/213/283 367/216/283 358/215/283
|
|
1653
|
+
f 358/215/283 360/214/283 366/213/283
|
|
1654
|
+
f 367/216/284 368/218/284 356/217/284
|
|
1655
|
+
f 356/217/285 358/215/285 367/216/285
|
|
1656
|
+
f 368/218/286 369/220/286 354/219/286
|
|
1657
|
+
f 354/219/287 356/217/287 368/218/287
|
|
1658
|
+
f 369/220/288 370/222/288 351/221/288
|
|
1659
|
+
f 351/221/289 354/219/289 369/220/289
|
|
1660
|
+
f 352/196/290 351/193/290 371/224/290
|
|
1661
|
+
f 371/224/291 372/223/291 352/196/291
|
|
1662
|
+
f 351/221/292 370/222/292 373/226/292
|
|
1663
|
+
f 373/226/292 371/225/292 351/221/292
|
|
1664
|
+
f 374/227/293 375/230/293 376/229/293
|
|
1665
|
+
f 376/229/294 377/228/294 374/227/294
|
|
1666
|
+
f 375/230/295 378/232/295 379/231/295
|
|
1667
|
+
f 379/231/296 376/229/296 375/230/296
|
|
1668
|
+
f 378/232/297 380/234/297 381/233/297
|
|
1669
|
+
f 381/233/298 379/231/298 378/232/298
|
|
1670
|
+
f 380/234/299 360/201/299 359/202/299
|
|
1671
|
+
f 359/202/299 381/233/299 380/234/299
|
|
1672
|
+
f 382/235/300 377/238/300 376/237/300
|
|
1673
|
+
f 376/237/301 383/236/301 382/235/301
|
|
1674
|
+
f 383/236/302 376/237/302 379/240/302
|
|
1675
|
+
f 379/240/303 384/239/303 383/236/303
|
|
1676
|
+
f 384/239/304 379/240/304 381/242/304
|
|
1677
|
+
f 381/242/305 385/241/305 384/239/305
|
|
1678
|
+
f 385/241/306 381/242/306 359/211/306
|
|
1679
|
+
f 359/211/307 365/212/307 385/241/307
|
|
1680
|
+
f 366/213/308 360/214/308 380/244/308
|
|
1681
|
+
f 380/244/308 386/243/308 366/213/308
|
|
1682
|
+
f 386/243/309 380/244/309 378/246/309
|
|
1683
|
+
f 378/246/310 387/245/310 386/243/310
|
|
1684
|
+
f 387/245/311 378/246/311 375/248/311
|
|
1685
|
+
f 375/248/312 388/247/312 387/245/312
|
|
1686
|
+
f 388/247/313 375/248/313 374/250/313
|
|
1687
|
+
f 374/250/314 389/249/314 388/247/314
|
|
1688
|
+
f 377/228/315 390/252/315 391/251/315
|
|
1689
|
+
f 391/251/316 374/227/316 377/228/316
|
|
1690
|
+
f 374/250/317 391/254/317 392/253/317
|
|
1691
|
+
f 392/253/318 389/249/318 374/250/318
|
|
1692
|
+
f 393/256/61 394/257/61 395/258/61
|
|
1693
|
+
f 395/258/61 396/255/61 393/256/61
|
|
1694
|
+
f 397/259/178 398/262/178 399/261/178
|
|
1695
|
+
f 399/261/178 400/260/178 397/259/178
|
|
1696
|
+
f 398/262/179 393/264/179 396/263/179
|
|
1697
|
+
f 396/263/179 399/261/179 398/262/179
|
|
1698
|
+
f 399/265/319 396/268/319 395/267/319
|
|
1699
|
+
f 395/267/319 401/266/319 399/265/319
|
|
1700
|
+
f 402/260/181 401/261/181 403/262/181
|
|
1701
|
+
f 403/262/181 404/259/181 402/260/181
|
|
1702
|
+
f 401/261/182 395/263/182 394/264/182
|
|
1703
|
+
f 394/264/182 403/262/182 401/261/182
|
|
1704
|
+
f 404/269/320 403/266/320 398/265/320
|
|
1705
|
+
f 398/265/321 397/270/321 404/269/321
|
|
1706
|
+
f 403/266/322 394/267/322 393/268/322
|
|
1707
|
+
f 393/268/322 398/265/322 403/266/322
|
|
1708
|
+
f 405/257/61 406/258/61 407/255/61
|
|
1709
|
+
f 407/255/61 408/256/61 405/257/61
|
|
1710
|
+
f 409/259/186 410/260/186 411/261/186
|
|
1711
|
+
f 411/261/186 412/262/186 409/259/186
|
|
1712
|
+
f 412/262/187 411/261/187 406/263/187
|
|
1713
|
+
f 406/263/187 405/264/187 412/262/187
|
|
1714
|
+
f 411/265/319 413/266/319 407/267/319
|
|
1715
|
+
f 407/267/319 406/268/319 411/265/319
|
|
1716
|
+
f 414/260/188 415/259/188 416/262/188
|
|
1717
|
+
f 416/262/188 413/261/188 414/260/188
|
|
1718
|
+
f 413/261/189 416/262/189 408/264/189
|
|
1719
|
+
f 408/264/189 407/263/189 413/261/189
|
|
1720
|
+
f 415/269/321 409/270/321 412/265/321
|
|
1721
|
+
f 412/265/320 416/266/320 415/269/320
|
|
1722
|
+
f 416/266/322 412/265/322 405/268/322
|
|
1723
|
+
f 405/268/322 408/267/322 416/266/322
|
|
1724
|
+
# 676 faces
|
|
1725
|
+
|