From 3ed5257c222f34b591b744ef6418b5c1165be25f Mon Sep 17 00:00:00 2001 From: J08nY Date: Sat, 22 Apr 2017 16:58:23 +0200 Subject: Camera now rotates around worlds --- .../cube.dae-8dcb9af004f5b3c1e6a0f8dcbd4194bf.scn | Bin 3402 -> 3692 bytes assets/incubator.blend | Bin 558300 -> 558300 bytes assets/incubator.blend1 | Bin 0 -> 558300 bytes base.gd | 28 - base.tscn | 34 +- cube.tscn | 42 + house.tscn | 5 +- incubator.dae | 524 ---------- incubator.dae.import | 1049 -------------------- incubator.tscn | 107 +- ld38.godot | 3 +- mesh/cube.dae.import | 2 +- scripts/base.gd | 33 + scripts/camera.gd | 26 + scripts/cube.gd | 21 + scripts/house.gd | 4 + scripts/incubator.gd | 38 + scripts/world.gd | 45 + world.gd | 39 - world.tscn | 16 +- 20 files changed, 351 insertions(+), 1665 deletions(-) create mode 100644 assets/incubator.blend1 delete mode 100644 base.gd create mode 100644 cube.tscn delete mode 100644 incubator.dae delete mode 100644 incubator.dae.import create mode 100644 scripts/base.gd create mode 100644 scripts/camera.gd create mode 100644 scripts/cube.gd create mode 100644 scripts/house.gd create mode 100644 scripts/incubator.gd create mode 100644 scripts/world.gd delete mode 100644 world.gd diff --git a/.import/cube.dae-8dcb9af004f5b3c1e6a0f8dcbd4194bf.scn b/.import/cube.dae-8dcb9af004f5b3c1e6a0f8dcbd4194bf.scn index afeee1e..d8e71f4 100644 Binary files a/.import/cube.dae-8dcb9af004f5b3c1e6a0f8dcbd4194bf.scn and b/.import/cube.dae-8dcb9af004f5b3c1e6a0f8dcbd4194bf.scn differ diff --git a/assets/incubator.blend b/assets/incubator.blend index 247caf7..694be13 100644 Binary files a/assets/incubator.blend and b/assets/incubator.blend differ diff --git a/assets/incubator.blend1 b/assets/incubator.blend1 new file mode 100644 index 0000000..27ea1c1 Binary files /dev/null and b/assets/incubator.blend1 differ diff --git a/base.gd b/base.gd deleted file mode 100644 index a0ec8b2..0000000 --- a/base.gd +++ /dev/null @@ -1,28 +0,0 @@ -extends Node - -var World = preload("res://world.tscn") -var Incubator = preload("res://incubator.tscn") - -func _ready(): - var inc = Incubator.instance() - inc.translate(Vector3(-2, -2, -15)) - add_child(inc) - -func _process(delta): - pass - -func _input(event): - if event.type == InputEvent.MOUSE_BUTTON: - if event.button_index == BUTTON_WHEEL_DOWN: - get_node("Camera").translate(Vector3(0,0,0.1)) - elif event.button_index == BUTTON_WHEEL_UP: - get_node("Camera").translate(Vector3(0,0,-0.1)) - if event.type == InputEvent.KEY: - if event.scancode == KEY_A: - get_node("Camera").translate(Vector3(-0.2,0,0)) - if event.scancode == KEY_D: - get_node("Camera").translate(Vector3(0.2,0,0)) - if event.scancode == KEY_S: - get_node("Camera").translate(Vector3(0,-0.2,0)) - if event.scancode == KEY_W: - get_node("Camera").translate(Vector3(0,0.2,0)) \ No newline at end of file diff --git a/base.tscn b/base.tscn index a5343bc..0abf748 100644 --- a/base.tscn +++ b/base.tscn @@ -1,9 +1,11 @@ -[gd_scene load_steps=3 format=2] +[gd_scene load_steps=5 format=2] -[ext_resource path="res://base.gd" type="Script" id=1] -[ext_resource path="res://world.tscn" type="PackedScene" id=2] +[ext_resource path="res://scripts/base.gd" type="Script" id=1] +[ext_resource path="res://scripts/camera.gd" type="Script" id=2] +[ext_resource path="res://world.tscn" type="PackedScene" id=3] +[ext_resource path="res://incubator.tscn" type="PackedScene" id=4] -[node name="Game" type="Node"] +[node name="Game" type="Spatial"] script = ExtResource( 1 ) @@ -14,11 +16,12 @@ fov = 60.0 near = 0.1 far = 100.0 keep_aspect = 1 -current = false +current = true cull_mask = 1048575 environment = null h_offset = 0.0 v_offset = 0.0 +script = ExtResource( 2 ) [node name="OmniLight" type="OmniLight" parent="Camera"] @@ -40,8 +43,25 @@ omni_attenuation = 1.0 omni_shadow_mode = 0 omni_shadow_detail = 1 -[node name="World" parent="." instance=ExtResource( 2 )] +[node name="World" parent="." instance=ExtResource( 3 )] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -3.35552 ) +transform = Transform( 0.05, 0, 0, 0, 0.05, 0, 0, 0, 0.05, 0, 0, -3.35552 ) + +[node name="World2" parent="." instance=ExtResource( 3 )] + +transform = Transform( 0.05, 0, 0, 0, 0.05, 0, 0, 0, 0.05, -5.01353, 0, -3.35552 ) + +[node name="Incubator" parent="." instance=ExtResource( 4 )] + +transform = Transform( -4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 0, 0, -6 ) + +[node name="Panel" type="Panel" parent="."] + +margin_left = 20.0 +margin_top = 490.0 +margin_right = 240.0 +margin_bottom = 580.0 +rect_clip_content = false +mouse_filter = 0 diff --git a/cube.tscn b/cube.tscn new file mode 100644 index 0000000..bfbb728 --- /dev/null +++ b/cube.tscn @@ -0,0 +1,42 @@ +[gd_scene load_steps=4 format=2] + +[ext_resource path="res://mesh/cube.dae" type="PackedScene" id=1] +[ext_resource path="res://scripts/cube.gd" type="Script" id=2] + +[sub_resource type="ConvexPolygonShape" id=1] + +points = PoolVector3Array( 1, -1, -0.999512, 1, -1, 1, -1, -1, 0.999512, -0.999512, -1, -1, 1, 1, -0.999512, -0.999512, 1, -1, -1, 1, 0.999512, 0.999512, 1, 1, 1, -1, -0.999512, 1, 1, -0.999512, 0.999512, 1, 1, 1, -1, 1, 1, -1, 1, 0.999512, 1, 1, -1, 1, 0.999512, -1, -1, 0.999512, -1, -1, 0.999512, -1, 1, 0.999512, -0.999512, 1, -1, -0.999512, -1, -1, 1, 1, -0.999512, 1, -1, -0.999512, -0.999512, -1, -1, -0.999512, 1, -1 ) + +[node name="Scene Root" instance=ExtResource( 1 )] + +script = ExtResource( 2 ) + +[node name="Cube" parent="."] + +use_in_baked_light = false +material/0 = null + +[node name="StaticBody" type="StaticBody" parent="Cube"] + +input_ray_pickable = true +input_capture_on_drag = false +shape_count = 1 +shapes/0/shape = SubResource( 1 ) +shapes/0/transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 ) +shapes/0/trigger = true +collision_layer = 1 +collision_mask = 1 +friction = 1.0 +bounce = 0.0 +constant_linear_velocity = Vector3( 0, 0, 0 ) +constant_angular_velocity = Vector3( 0, 0, 0 ) + +[node name="CollisionShape" type="CollisionShape" parent="Cube/StaticBody"] + +shape = SubResource( 1 ) +trigger = true +_update_shape_index = 0 + +[connection signal="input_event" from="Cube/StaticBody" to="." method="_input_event"] + + diff --git a/house.tscn b/house.tscn index f715549..aa0dab5 100644 --- a/house.tscn +++ b/house.tscn @@ -1,7 +1,10 @@ -[gd_scene load_steps=2 format=2] +[gd_scene load_steps=3 format=2] [ext_resource path="res://mesh/house.dae" type="PackedScene" id=1] +[ext_resource path="res://scripts/house.gd" type="Script" id=2] [node name="Scene Root" instance=ExtResource( 1 )] +script = ExtResource( 2 ) + diff --git a/incubator.dae b/incubator.dae deleted file mode 100644 index 941d75c..0000000 --- a/incubator.dae +++ /dev/null @@ -1,524 +0,0 @@ - - - - - Anonymous - Collada Exporter for Blender 2.6+, by Juan Linietsky (juan@codenix.com) - - 2017-04-22T13:00:42Z - 2017-04-22T13:00:42Z - - Z_UP - - - - - - - - 0.0 0.0 0.0 1.0 - - - 0.0 0.0 0.0 1.0 - - - 0.6400000190734865 0.6400000190734865 0.6400000190734865 1.0 - - - 0.5 0.5 0.5 1.0 - - - 50 - - - 1.0 1.0 1.0 1.0 - - - 4.0 - - - - - - - 0 - - - - - - - - - - - 0.0 0.0 0.0 1.0 - - - 0.0 0.0 0.0 1.0 - - - 0.6400000190734865 0.6400000190734865 0.6400000190734865 1.0 - - - 0.800000011920929 0.800000011920929 0.800000011920929 1.0 - - - 50 - - - 1.0 1.0 1.0 1.0 - - - 0.20000000298023224 - - - 4.0 - - - - - - - 0 - - - - - - - - - - - - - - - - - - - 1.0 -1.0 -1.0 -0.9999996423721313 1.0000003576278687 -1.0 1.0 0.9999999403953552 -1.0 -0.9999999403953552 1.0 1.0 0.9999993443489075 -1.0000005960464478 1.0 1.0000004768371582 0.999999463558197 1.0 1.0000004768371582 0.999999463558197 1.0 1.0 -1.0 -1.0 1.0 0.9999999403953552 -1.0 0.9999993443489075 -1.0000005960464478 1.0 -1.0000001192092896 -0.9999998211860657 -1.0 1.0 -1.0 -1.0 -1.0000001192092896 -0.9999998211860657 -1.0 -0.9999999403953552 1.0 1.0 -0.9999996423721313 1.0000003576278687 -1.0 1.0 0.9999999403953552 -1.0 -0.9999999403953552 1.0 1.0 1.0000004768371582 0.999999463558197 1.0 1.0 -1.0 -1.0 -1.0000001192092896 -0.9999998211860657 -1.0 -0.9999996423721313 1.0000003576278687 -1.0 -0.9999999403953552 1.0 1.0 -1.0000003576278687 -0.9999996423721313 1.0 0.9999993443489075 -1.0000005960464478 1.0 1.0000004768371582 0.999999463558197 1.0 0.9999993443489075 -1.0000005960464478 1.0 1.0 -1.0 -1.0 0.9999993443489075 -1.0000005960464478 1.0 -1.0000003576278687 -0.9999996423721313 1.0 -1.0000001192092896 -0.9999998211860657 -1.0 -1.0000001192092896 -0.9999998211860657 -1.0 -1.0000003576278687 -0.9999996423721313 1.0 -0.9999999403953552 1.0 1.0 1.0 0.9999999403953552 -1.0 -0.9999996423721313 1.0000003576278687 -1.0 -0.9999999403953552 1.0 1.0 - - - - - - - - - - 2.980232949312267e-08 0.0 -1.0 2.980232949312267e-08 0.0 -1.0 2.980232949312267e-08 0.0 -1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 1.0 0.0 -2.384185791015625e-07 1.0 0.0 -2.384185791015625e-07 1.0 0.0 -2.384185791015625e-07 -8.940696716308594e-08 -1.0 -4.76837158203125e-07 -8.940696716308594e-08 -1.0 -4.76837158203125e-07 -8.940696716308594e-08 -1.0 -4.76837158203125e-07 -1.0 2.3841855067985307e-07 -1.4901156930591242e-07 -1.0 2.3841855067985307e-07 -1.4901156930591242e-07 -1.0 2.3841855067985307e-07 -1.4901156930591242e-07 2.6822084464583895e-07 1.0 2.3841852225814364e-07 2.6822084464583895e-07 1.0 2.3841852225814364e-07 2.6822084464583895e-07 1.0 2.3841852225814364e-07 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 5.96046660916727e-08 0.0 1.0 5.96046660916727e-08 0.0 1.0 5.96046660916727e-08 0.0 1.0 1.0 -5.960464477539062e-07 3.2782537573439186e-07 1.0 -5.960464477539062e-07 3.2782537573439186e-07 1.0 -5.960464477539062e-07 3.2782537573439186e-07 -4.768372150465439e-07 -1.0 1.1920927533992653e-07 -4.768372150465439e-07 -1.0 1.1920927533992653e-07 -4.768372150465439e-07 -1.0 1.1920927533992653e-07 -1.0 2.3841863594498136e-07 -1.1920931797249068e-07 -1.0 2.3841863594498136e-07 -1.1920931797249068e-07 -1.0 2.3841863594498136e-07 -1.1920931797249068e-07 2.0861631355728605e-07 1.0 8.940701690107744e-08 2.0861631355728605e-07 1.0 8.940701690107744e-08 2.0861631355728605e-07 1.0 8.940701690107744e-08 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35

-
-
-
- - - - -1.0 -2.8197624683380127 1.0 -1.0 1.0 -1.0 -1.0 -2.8197624683380127 -1.0 -1.0 1.0 1.0 1.0 1.0 -1.0 -1.0 1.0 -1.0 1.0 1.0 1.0 1.0 -2.8197624683380127 -1.0 1.0 1.0 -1.0 1.0 -2.8197624683380127 1.0 -1.0 -2.8197624683380127 -1.0 1.0 -2.8197624683380127 -1.0 1.0 1.0 -1.0 -1.0 -2.8197624683380127 -1.0 -1.0 1.0 -1.0 -1.0 1.0 1.0 1.0 -2.8197624683380127 1.0 1.0 1.0 1.0 -1.0 1.0 1.0 1.0 1.0 1.0 1.0 -2.8197624683380127 1.0 -1.0 -2.8197624683380127 1.0 1.0 -2.8197624683380127 -1.0 -1.0 -2.8197624683380127 1.0 - - - - - - - - - - -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -1.0 0.0 0.0 0.0 1.0 0.0 1.0 0.0 0.0 0.0 -1.0 0.0 0.0 0.0 -1.0 0.0 0.0 1.0 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 0 18 1 3 19 4 6 20 7 9 21 10 12 22 13 15 23 16

-
-
-
- - - - 0.0 1.0 1.0 0.19509032368659973 0.9807852506637573 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 1.0 0.5555702447891235 0.8314695954322815 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 1.0 0.9238795042037964 0.3826834261417389 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 -1.0 0.9238795042037964 0.3826834261417389 -1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 -1.0 0.9807852506637573 0.19509035348892212 -1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.19509008526802063 -0.9807853102684021 1.0 -3.2584136988589307e-07 -1.0 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 1.0 0.0 1.0 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 0.9807852506637573 0.19509035348892212 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.19509032368659973 0.9807852506637573 1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.980785071849823 0.1950913518667221 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -3.2584136988589307e-07 -1.0 1.0 -3.2584136988589307e-07 -1.0 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.5555701851844788 -0.8314696550369263 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807853102684021 -0.19509020447731018 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795042037964 0.3826834261417389 1.0 0.8314696550369263 0.5555701851844788 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 1.0 0.5555702447891235 0.8314695954322815 1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795042037964 0.3826834261417389 1.0 0.9238795042037964 0.3826834261417389 1.0 0.7071067690849304 0.7071067690849304 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.7071067690849304 0.7071067690849304 1.0 0.3826834559440613 0.9238795042037964 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.9807852506637573 0.19509035348892212 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 - - - - - - - - - - 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.09801729023456573 0.9951847195625305 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.47139546275138855 0.8819218277931213 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 0 102 1 103 104 105 6 106 7 107 108 109 110 111 112 15 113 16 18 114 19 21 115 22 116 117 118 27 119 28 120 121 122 123 124 125 36 126 37 39 127 40 128 129 130 45 131 46 48 132 49 133 134 135 54 136 55 137 138 139 140 141 142 63 143 64 144 145 146 147 148 149 150 151 152 75 153 76 154 155 156 81 157 82 158 159 160 87 161 88 162 163 164 164 165 162 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 180 180 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 162 162 165 166 205 169 206 177 176 178 179 181 180 180 184 199 188 190 199 207 208 209 210 211 212 162 168 177 213 214 215 185 187 193 216 217 218 162 177 199 219 220 221 96 222 97 223 224 225 225 226 227 228 229 230 231 232 227 101 233 234 234 235 101 236 237 99 238 239 99 99 240 241 241 242 243 243 244 245 246 247 248 249 250 251 252 253 254 255 256 223 257 258 259 223 225 101 227 232 101 101 235 236 237 238 99 99 241 100 243 245 100 260 261 262 256 263 223 225 227 101 101 236 99 241 243 100 264 255 223 265 266 267

-
-
-
- - - - 0.0 1.0 1.0 0.19509032368659973 0.9807852506637573 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 1.0 0.5555702447891235 0.8314695954322815 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 1.0 0.9238795042037964 0.3826834261417389 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 -1.0 0.9238795042037964 0.3826834261417389 -1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 -1.0 0.9807852506637573 0.19509035348892212 -1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.19509008526802063 -0.9807853102684021 1.0 -3.2584136988589307e-07 -1.0 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 1.0 0.0 1.0 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 0.9807852506637573 0.19509035348892212 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.19509032368659973 0.9807852506637573 1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.980785071849823 0.1950913518667221 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -3.2584136988589307e-07 -1.0 1.0 -3.2584136988589307e-07 -1.0 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.5555701851844788 -0.8314696550369263 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807853102684021 -0.19509020447731018 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795042037964 0.3826834261417389 1.0 0.8314696550369263 0.5555701851844788 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 1.0 0.5555702447891235 0.8314695954322815 1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795042037964 0.3826834261417389 1.0 0.9238795042037964 0.3826834261417389 1.0 0.7071067690849304 0.7071067690849304 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.7071067690849304 0.7071067690849304 1.0 0.3826834559440613 0.9238795042037964 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.9807852506637573 0.19509035348892212 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 - - - - - - - - - - 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.09801729023456573 0.9951847195625305 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.47139546275138855 0.8819218277931213 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 0 102 1 103 104 105 6 106 7 107 108 109 110 111 112 15 113 16 18 114 19 21 115 22 116 117 118 27 119 28 120 121 122 123 124 125 36 126 37 39 127 40 128 129 130 45 131 46 48 132 49 133 134 135 54 136 55 137 138 139 140 141 142 63 143 64 144 145 146 147 148 149 150 151 152 75 153 76 154 155 156 81 157 82 158 159 160 87 161 88 162 163 164 164 165 162 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 180 180 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 162 162 165 166 205 169 206 177 176 178 179 181 180 180 184 199 188 190 199 207 208 209 210 211 212 162 168 177 213 214 215 185 187 193 216 217 218 162 177 199 219 220 221 96 222 97 223 224 225 225 226 227 228 229 230 231 232 227 101 233 234 234 235 101 236 237 99 238 239 99 99 240 241 241 242 243 243 244 245 246 247 248 249 250 251 252 253 254 255 256 223 257 258 259 223 225 101 227 232 101 101 235 236 237 238 99 99 241 100 243 245 100 260 261 262 256 263 223 225 227 101 101 236 99 241 243 100 264 255 223 265 266 267

-
-
-
- - - - 0.0 1.0 1.0 0.19509032368659973 0.9807852506637573 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 1.0 0.5555702447891235 0.8314695954322815 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 1.0 0.9238795042037964 0.3826834261417389 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 -1.0 0.9238795042037964 0.3826834261417389 -1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 -1.0 0.9807852506637573 0.19509035348892212 -1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.19509008526802063 -0.9807853102684021 1.0 -3.2584136988589307e-07 -1.0 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 1.0 0.0 1.0 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 0.9807852506637573 0.19509035348892212 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.19509032368659973 0.9807852506637573 1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.980785071849823 0.1950913518667221 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -3.2584136988589307e-07 -1.0 1.0 -3.2584136988589307e-07 -1.0 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.5555701851844788 -0.8314696550369263 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807853102684021 -0.19509020447731018 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795042037964 0.3826834261417389 1.0 0.8314696550369263 0.5555701851844788 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 1.0 0.5555702447891235 0.8314695954322815 1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795042037964 0.3826834261417389 1.0 0.9238795042037964 0.3826834261417389 1.0 0.7071067690849304 0.7071067690849304 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.7071067690849304 0.7071067690849304 1.0 0.3826834559440613 0.9238795042037964 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.9807852506637573 0.19509035348892212 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 - - - - - - - - - - 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.09801729023456573 0.9951847195625305 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.47139546275138855 0.8819218277931213 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 0 102 1 103 104 105 6 106 7 107 108 109 110 111 112 15 113 16 18 114 19 21 115 22 116 117 118 27 119 28 120 121 122 123 124 125 36 126 37 39 127 40 128 129 130 45 131 46 48 132 49 133 134 135 54 136 55 137 138 139 140 141 142 63 143 64 144 145 146 147 148 149 150 151 152 75 153 76 154 155 156 81 157 82 158 159 160 87 161 88 162 163 164 164 165 162 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 180 180 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 162 162 165 166 205 169 206 177 176 178 179 181 180 180 184 199 188 190 199 207 208 209 210 211 212 162 168 177 213 214 215 185 187 193 216 217 218 162 177 199 219 220 221 96 222 97 223 224 225 225 226 227 228 229 230 231 232 227 101 233 234 234 235 101 236 237 99 238 239 99 99 240 241 241 242 243 243 244 245 246 247 248 249 250 251 252 253 254 255 256 223 257 258 259 223 225 101 227 232 101 101 235 236 237 238 99 99 241 100 243 245 100 260 261 262 256 263 223 225 227 101 101 236 99 241 243 100 264 255 223 265 266 267

-
-
-
- - - - 0.0 1.0 1.0 0.19509032368659973 0.9807852506637573 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 1.0 0.5555702447891235 0.8314695954322815 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 1.0 0.9238795042037964 0.3826834261417389 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 -1.0 0.9238795042037964 0.3826834261417389 -1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 -1.0 0.9807852506637573 0.19509035348892212 -1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.19509008526802063 -0.9807853102684021 1.0 -3.2584136988589307e-07 -1.0 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 1.0 0.0 1.0 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 0.9807852506637573 0.19509035348892212 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.19509032368659973 0.9807852506637573 1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.980785071849823 0.1950913518667221 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -3.2584136988589307e-07 -1.0 1.0 -3.2584136988589307e-07 -1.0 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.5555701851844788 -0.8314696550369263 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807853102684021 -0.19509020447731018 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795042037964 0.3826834261417389 1.0 0.8314696550369263 0.5555701851844788 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 1.0 0.5555702447891235 0.8314695954322815 1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795042037964 0.3826834261417389 1.0 0.9238795042037964 0.3826834261417389 1.0 0.7071067690849304 0.7071067690849304 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.7071067690849304 0.7071067690849304 1.0 0.3826834559440613 0.9238795042037964 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.9807852506637573 0.19509035348892212 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 - - - - - - - - - - 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.09801729023456573 0.9951847195625305 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.47139546275138855 0.8819218277931213 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 0 102 1 103 104 105 6 106 7 107 108 109 110 111 112 15 113 16 18 114 19 21 115 22 116 117 118 27 119 28 120 121 122 123 124 125 36 126 37 39 127 40 128 129 130 45 131 46 48 132 49 133 134 135 54 136 55 137 138 139 140 141 142 63 143 64 144 145 146 147 148 149 150 151 152 75 153 76 154 155 156 81 157 82 158 159 160 87 161 88 162 163 164 164 165 162 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 180 180 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 162 162 165 166 205 169 206 177 176 178 179 181 180 180 184 199 188 190 199 207 208 209 210 211 212 162 168 177 213 214 215 185 187 193 216 217 218 162 177 199 219 220 221 96 222 97 223 224 225 225 226 227 228 229 230 231 232 227 101 233 234 234 235 101 236 237 99 238 239 99 99 240 241 241 242 243 243 244 245 246 247 248 249 250 251 252 253 254 255 256 223 257 258 259 223 225 101 227 232 101 101 235 236 237 238 99 99 241 100 243 245 100 260 261 262 256 263 223 225 227 101 101 236 99 241 243 100 264 255 223 265 266 267

-
-
-
- - - - 0.0 1.0 1.0 0.19509032368659973 0.9807852506637573 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 1.0 0.5555702447891235 0.8314695954322815 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 1.0 0.9238795042037964 0.3826834261417389 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 -1.0 0.9238795042037964 0.3826834261417389 -1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 -1.0 0.9807852506637573 0.19509035348892212 -1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.19509008526802063 -0.9807853102684021 1.0 -3.2584136988589307e-07 -1.0 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 1.0 0.0 1.0 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 0.9807852506637573 0.19509035348892212 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.19509032368659973 0.9807852506637573 1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.980785071849823 0.1950913518667221 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -3.2584136988589307e-07 -1.0 1.0 -3.2584136988589307e-07 -1.0 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.5555701851844788 -0.8314696550369263 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807853102684021 -0.19509020447731018 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795042037964 0.3826834261417389 1.0 0.8314696550369263 0.5555701851844788 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 1.0 0.5555702447891235 0.8314695954322815 1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795042037964 0.3826834261417389 1.0 0.9238795042037964 0.3826834261417389 1.0 0.7071067690849304 0.7071067690849304 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.7071067690849304 0.7071067690849304 1.0 0.3826834559440613 0.9238795042037964 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.9807852506637573 0.19509035348892212 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 - - - - - - - - - - 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.09801729023456573 0.9951847195625305 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.47139546275138855 0.8819218277931213 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 0 102 1 103 104 105 6 106 7 107 108 109 110 111 112 15 113 16 18 114 19 21 115 22 116 117 118 27 119 28 120 121 122 123 124 125 36 126 37 39 127 40 128 129 130 45 131 46 48 132 49 133 134 135 54 136 55 137 138 139 140 141 142 63 143 64 144 145 146 147 148 149 150 151 152 75 153 76 154 155 156 81 157 82 158 159 160 87 161 88 162 163 164 164 165 162 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 180 180 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 162 162 165 166 205 169 206 177 176 178 179 181 180 180 184 199 188 190 199 207 208 209 210 211 212 162 168 177 213 214 215 185 187 193 216 217 218 162 177 199 219 220 221 96 222 97 223 224 225 225 226 227 228 229 230 231 232 227 101 233 234 234 235 101 236 237 99 238 239 99 99 240 241 241 242 243 243 244 245 246 247 248 249 250 251 252 253 254 255 256 223 257 258 259 223 225 101 227 232 101 101 235 236 237 238 99 99 241 100 243 245 100 260 261 262 256 263 223 225 227 101 101 236 99 241 243 100 264 255 223 265 266 267

-
-
-
- - - - 0.0 1.0 1.0 0.19509032368659973 0.9807852506637573 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 1.0 0.5555702447891235 0.8314695954322815 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 1.0 0.9238795042037964 0.3826834261417389 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 -1.0 0.9238795042037964 0.3826834261417389 -1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 -1.0 0.9807852506637573 0.19509035348892212 -1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.19509008526802063 -0.9807853102684021 1.0 -3.2584136988589307e-07 -1.0 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 1.0 0.0 1.0 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 0.9807852506637573 0.19509035348892212 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.19509032368659973 0.9807852506637573 1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.980785071849823 0.1950913518667221 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -3.2584136988589307e-07 -1.0 1.0 -3.2584136988589307e-07 -1.0 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.5555701851844788 -0.8314696550369263 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807853102684021 -0.19509020447731018 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795042037964 0.3826834261417389 1.0 0.8314696550369263 0.5555701851844788 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 1.0 0.5555702447891235 0.8314695954322815 1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795042037964 0.3826834261417389 1.0 0.9238795042037964 0.3826834261417389 1.0 0.7071067690849304 0.7071067690849304 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.7071067690849304 0.7071067690849304 1.0 0.3826834559440613 0.9238795042037964 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.9807852506637573 0.19509035348892212 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 - - - - - - - - - - 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.09801729023456573 0.9951847195625305 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.47139546275138855 0.8819218277931213 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 0 102 1 103 104 105 6 106 7 107 108 109 110 111 112 15 113 16 18 114 19 21 115 22 116 117 118 27 119 28 120 121 122 123 124 125 36 126 37 39 127 40 128 129 130 45 131 46 48 132 49 133 134 135 54 136 55 137 138 139 140 141 142 63 143 64 144 145 146 147 148 149 150 151 152 75 153 76 154 155 156 81 157 82 158 159 160 87 161 88 162 163 164 164 165 162 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 180 180 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 162 162 165 166 205 169 206 177 176 178 179 181 180 180 184 199 188 190 199 207 208 209 210 211 212 162 168 177 213 214 215 185 187 193 216 217 218 162 177 199 219 220 221 96 222 97 223 224 225 225 226 227 228 229 230 231 232 227 101 233 234 234 235 101 236 237 99 238 239 99 99 240 241 241 242 243 243 244 245 246 247 248 249 250 251 252 253 254 255 256 223 257 258 259 223 225 101 227 232 101 101 235 236 237 238 99 99 241 100 243 245 100 260 261 262 256 263 223 225 227 101 101 236 99 241 243 100 264 255 223 265 266 267

-
-
-
- - - - 0.0 1.0 1.0 0.19509032368659973 0.9807852506637573 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 1.0 0.5555702447891235 0.8314695954322815 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 1.0 0.9238795042037964 0.3826834261417389 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 -1.0 0.9238795042037964 0.3826834261417389 -1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 -1.0 0.9807852506637573 0.19509035348892212 -1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.19509008526802063 -0.9807853102684021 1.0 -3.2584136988589307e-07 -1.0 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 1.0 0.0 1.0 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 0.9807852506637573 0.19509035348892212 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.19509032368659973 0.9807852506637573 1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.980785071849823 0.1950913518667221 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -3.2584136988589307e-07 -1.0 1.0 -3.2584136988589307e-07 -1.0 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.5555701851844788 -0.8314696550369263 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807853102684021 -0.19509020447731018 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795042037964 0.3826834261417389 1.0 0.8314696550369263 0.5555701851844788 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 1.0 0.5555702447891235 0.8314695954322815 1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795042037964 0.3826834261417389 1.0 0.9238795042037964 0.3826834261417389 1.0 0.7071067690849304 0.7071067690849304 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.7071067690849304 0.7071067690849304 1.0 0.3826834559440613 0.9238795042037964 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.9807852506637573 0.19509035348892212 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 - - - - - - - - - - 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.09801729023456573 0.9951847195625305 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.47139546275138855 0.8819218277931213 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 0 102 1 103 104 105 6 106 7 107 108 109 110 111 112 15 113 16 18 114 19 21 115 22 116 117 118 27 119 28 120 121 122 123 124 125 36 126 37 39 127 40 128 129 130 45 131 46 48 132 49 133 134 135 54 136 55 137 138 139 140 141 142 63 143 64 144 145 146 147 148 149 150 151 152 75 153 76 154 155 156 81 157 82 158 159 160 87 161 88 162 163 164 164 165 162 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 180 180 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 162 162 165 166 205 169 206 177 176 178 179 181 180 180 184 199 188 190 199 207 208 209 210 211 212 162 168 177 213 214 215 185 187 193 216 217 218 162 177 199 219 220 221 96 222 97 223 224 225 225 226 227 228 229 230 231 232 227 101 233 234 234 235 101 236 237 99 238 239 99 99 240 241 241 242 243 243 244 245 246 247 248 249 250 251 252 253 254 255 256 223 257 258 259 223 225 101 227 232 101 101 235 236 237 238 99 99 241 100 243 245 100 260 261 262 256 263 223 225 227 101 101 236 99 241 243 100 264 255 223 265 266 267

-
-
-
- - - - 0.0 1.0 1.0 0.19509032368659973 0.9807852506637573 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 1.0 0.5555702447891235 0.8314695954322815 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 1.0 0.9238795042037964 0.3826834261417389 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 -1.0 0.9238795042037964 0.3826834261417389 -1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 -1.0 0.9807852506637573 0.19509035348892212 -1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 0.19509008526802063 -0.9807853102684021 1.0 -3.2584136988589307e-07 -1.0 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 1.0 0.0 1.0 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.19509008526802063 -0.9807853102684021 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 0.9807852506637573 0.19509035348892212 -1.0 0.19509032368659973 0.9807852506637573 1.0 0.19509032368659973 0.9807852506637573 1.0 0.3826834559440613 0.9238795042037964 1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 1.0 0.5555702447891235 0.8314695954322815 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 -1.0 0.7071067690849304 0.7071067690849304 1.0 0.8314696550369263 0.5555701851844788 1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 1.0 0.9807852506637573 0.19509035348892212 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807853102684021 -0.19509020447731018 1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.8314696550369263 -0.5555701851844788 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.19509008526802063 -0.9807853102684021 -1.0 -3.2584136988589307e-07 -1.0 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 -1.0 -1.0 9.655991561885457e-07 1.0 -0.980785071849823 0.1950913518667221 1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.19509032368659973 0.9807852506637573 1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.5555691123008728 0.8314703702926636 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.7071058750152588 0.707107663154602 1.0 -0.831468939781189 0.5555712580680847 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.980785071849823 0.1950913518667221 1.0 -1.0 9.655991561885457e-07 1.0 -1.0 9.655991561885457e-07 1.0 -0.9807854294776917 -0.1950894594192505 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.8314700126647949 -0.5555696487426758 1.0 -0.3826838731765747 -0.9238793253898621 1.0 -0.7071072459220886 -0.707106351852417 1.0 -0.5555707216262817 -0.8314692974090576 1.0 -0.19509072601795197 -0.9807851910591125 1.0 -3.2584136988589307e-07 -1.0 1.0 -3.2584136988589307e-07 -1.0 1.0 0.19509008526802063 -0.9807853102684021 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.38268327713012695 -0.9238796234130859 1.0 0.5555701851844788 -0.8314696550369263 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.7071067690849304 -0.7071067690849304 1.0 0.8314696550369263 -0.5555701851844788 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807853102684021 -0.19509020447731018 1.0 1.0 7.549790126404332e-08 1.0 1.0 7.549790126404332e-08 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9238795042037964 0.3826834261417389 1.0 0.8314696550369263 0.5555701851844788 1.0 0.7071067690849304 0.7071067690849304 1.0 0.7071067690849304 0.7071067690849304 1.0 0.5555702447891235 0.8314695954322815 1.0 -0.38268208503723145 0.9238801002502441 1.0 0.3826834559440613 0.9238795042037964 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.9807852506637573 0.19509035348892212 1.0 0.9238795042037964 0.3826834261417389 1.0 0.9238795042037964 0.3826834261417389 1.0 0.7071067690849304 0.7071067690849304 1.0 0.9238795638084412 -0.38268327713012695 1.0 -0.923879086971283 0.38268446922302246 1.0 -0.923879861831665 -0.3826826810836792 1.0 -0.3826838731765747 -0.9238793253898621 1.0 0.9238795638084412 -0.38268327713012695 1.0 0.7071067690849304 0.7071067690849304 1.0 0.3826834559440613 0.9238795042037964 1.0 -0.38268208503723145 0.9238801002502441 1.0 -0.19508881866931915 0.9807855486869812 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.0 1.0 -1.0 0.19509032368659973 0.9807852506637573 -1.0 0.3826834559440613 0.9238795042037964 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.5555702447891235 0.8314695954322815 -1.0 0.7071067690849304 0.7071067690849304 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.8314696550369263 0.5555701851844788 -1.0 0.9238795042037964 0.3826834261417389 -1.0 1.0 7.549790126404332e-08 -1.0 0.9807853102684021 -0.19509020447731018 -1.0 0.9238795638084412 -0.38268327713012695 -1.0 0.8314696550369263 -0.5555701851844788 -1.0 0.7071067690849304 -0.7071067690849304 -1.0 0.5555701851844788 -0.8314696550369263 -1.0 0.38268327713012695 -0.9238796234130859 -1.0 -3.2584136988589307e-07 -1.0 -1.0 -0.19509072601795197 -0.9807851910591125 -1.0 -0.3826838731765747 -0.9238793253898621 -1.0 -0.5555707216262817 -0.8314692974090576 -1.0 -0.7071072459220886 -0.707106351852417 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.8314700126647949 -0.5555696487426758 -1.0 -0.923879861831665 -0.3826826810836792 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -1.0 9.655991561885457e-07 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.923879086971283 0.38268446922302246 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.831468939781189 0.5555712580680847 -1.0 -0.7071058750152588 0.707107663154602 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.38268208503723145 0.9238801002502441 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 -0.5555691123008728 0.8314703702926636 -1.0 -0.980785071849823 0.1950913518667221 -1.0 -0.19508881866931915 0.9807855486869812 -1.0 0.9807852506637573 0.19509035348892212 -1.0 -0.9807854294776917 -0.1950894594192505 -1.0 - - - - - - - - - - 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.09801729023456573 0.9951847195625305 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.29028457403182983 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.6343935132026672 0.7730103135108948 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.7730105519294739 0.6343932151794434 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9951847195625305 -0.09801670163869858 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.8819212317466736 -0.47139668464660645 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.77301025390625 -0.634393572807312 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.2902842164039612 -0.9569404721260071 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.2902851998806 -0.9569401741027832 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.6343938708305359 -0.7730100154876709 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.7730107307434082 -0.6343928575515747 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9569407105445862 -0.2902834117412567 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951847791671753 -0.09801603108644485 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9951846599578857 0.0980178639292717 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.8819206357002258 0.47139787673950195 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.6343925595283508 0.7730110883712769 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 -0.47139546275138855 0.8819218277931213 0.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 5.960460924825384e-08 0.0 1.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.29028305411338806 0.9569408297538757 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.09801729023456573 0.9951847195625305 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.47139671444892883 0.8819212913513184 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.6343932151794434 0.7730105519294739 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.77301025390625 0.634393572807312 0.0 0.8819213509559631 0.4713965356349945 0.0 0.9569402933120728 0.2902847230434418 0.0 0.9951847195625305 0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9951847195625305 -0.09801731258630753 0.0 0.9569402933120728 -0.2902847230434418 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.8819215893745422 -0.47139623761177063 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.7730105519294739 -0.6343932151794434 0.0 0.6343933939933777 -0.7730104327201843 0.0 0.47139668464660645 -0.8819212317466736 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.29028430581092834 -0.9569404125213623 0.0 0.09801694005727768 -0.9951847195625305 0.0 -0.09801755100488663 -0.9951846599578857 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.2902851700782776 -0.956940233707428 0.0 -0.4713970720767975 -0.881921112537384 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.634393572807312 -0.77301025390625 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.7730110883712769 -0.6343925595283508 0.0 -0.8819215297698975 -0.4713960587978363 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9569406509399414 -0.2902839779853821 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.9951847791671753 -0.0980166345834732 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.995184600353241 0.09801845997571945 0.0 -0.9569399952888489 0.29028576612472534 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.8819208741188049 0.47139739990234375 0.0 -0.7730095982551575 0.6343943476676941 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.634392261505127 0.773011326789856 0.0 -0.47139546275138855 0.8819218277931213 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 -3.975114850618411e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 3.97511939809192e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 -1.3685305475519272e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -2.8779635385944857e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -3.8885764297447167e-07 0.0 1.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.29028305411338806 0.956940770149231 0.0 -0.09801653027534485 0.9951847791671753 0.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 -3.975113031629007e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 3.975119852839271e-06 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 3.888569892751548e-07 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 -5.960467319710006e-08 0.0 -1.0 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 0 102 1 103 104 105 6 106 7 107 108 109 110 111 112 15 113 16 18 114 19 21 115 22 116 117 118 27 119 28 120 121 122 123 124 125 36 126 37 39 127 40 128 129 130 45 131 46 48 132 49 133 134 135 54 136 55 137 138 139 140 141 142 63 143 64 144 145 146 147 148 149 150 151 152 75 153 76 154 155 156 81 157 82 158 159 160 87 161 88 162 163 164 164 165 162 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 180 180 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 162 162 165 166 205 169 206 177 176 178 179 181 180 180 184 199 188 190 199 207 208 209 210 211 212 162 168 177 213 214 215 185 187 193 216 217 218 162 177 199 219 220 221 96 222 97 223 224 225 225 226 227 228 229 230 231 232 227 101 233 234 234 235 101 236 237 99 238 239 99 99 240 241 241 242 243 243 244 245 246 247 248 249 250 251 252 253 254 255 256 223 257 258 259 223 225 101 227 232 101 101 235 236 237 238 99 99 241 100 243 245 100 260 261 262 256 263 223 225 227 101 101 236 99 241 243 100 264 255 223 265 266 267

-
-
-
- - - - 0.0 1.0 1.780594825744629 0.19509032368659973 0.9807851910591125 -1.3156791925430298 0.0 0.9999999403953552 -1.3156791925430298 0.19509032368659973 0.9807853102684021 1.780594825744629 0.3826834559440613 0.9238794445991516 -1.3156791925430298 0.19509032368659973 0.9807851910591125 -1.3156791925430298 0.3826834559440613 0.9238795638084412 1.780594825744629 0.5555702447891235 0.8314695358276367 -1.3156791925430298 0.3826834559440613 0.9238794445991516 -1.3156791925430298 0.5555702447891235 0.8314696550369263 1.780594825744629 0.7071067690849304 0.7071067094802856 -1.3156791925430298 0.5555702447891235 0.8314695358276367 -1.3156791925430298 0.7071067690849304 0.7071068286895752 1.780594825744629 0.8314696550369263 0.555570125579834 -1.3156791925430298 0.7071067690849304 0.7071067094802856 -1.3156791925430298 0.8314696550369263 0.5555702447891235 1.780594825744629 0.9238795042037964 0.3826834261417389 -1.3156791925430298 0.8314696550369263 0.555570125579834 -1.3156791925430298 0.9238795042037964 0.38268348574638367 1.780594825744629 0.9807852506637573 0.19509033858776093 -1.3156791925430298 0.9238795042037964 0.3826834261417389 -1.3156791925430298 0.9807852506637573 0.1950903832912445 1.780594825744629 1.0 6.169912580844539e-08 -1.3156791925430298 0.9807852506637573 0.19509033858776093 -1.3156791925430298 1.0 1.096187887128508e-07 1.780594825744629 0.9807853102684021 -0.19509021937847137 -1.3156791925430298 1.0 6.169912580844539e-08 -1.3156791925430298 0.9807853102684021 -0.1950901746749878 1.780594825744629 0.9238795638084412 -0.38268327713012695 -1.3156791925430298 0.9807853102684021 -0.19509021937847137 -1.3156791925430298 0.9238795638084412 -0.3826832175254822 1.780594825744629 0.8314696550369263 -0.5555702447891235 -1.3156791925430298 0.9238795638084412 -0.38268327713012695 -1.3156791925430298 0.8314696550369263 -0.5555702447891235 -1.3156791925430298 0.7071067690849304 -0.7071067094802856 1.780594825744629 0.7071067690849304 -0.7071068286895752 -1.3156791925430298 0.7071067690849304 -0.7071067094802856 1.780594825744629 0.5555701851844788 -0.831469714641571 -1.3156791925430298 0.7071067690849304 -0.7071068286895752 -1.3156791925430298 0.5555701851844788 -0.8314695954322815 1.780594825744629 0.38268327713012695 -0.9238796830177307 -1.3156791925430298 0.5555701851844788 -0.831469714641571 -1.3156791925430298 0.38268327713012695 -0.9238795638084412 1.780594825744629 0.19509008526802063 -0.9807853698730469 -1.3156791925430298 0.38268327713012695 -0.9238796830177307 -1.3156791925430298 0.19509008526802063 -0.9807852506637573 1.780594825744629 -3.2584136988589307e-07 -1.0 -1.3156791925430298 0.19509008526802063 -0.9807853698730469 -1.3156791925430298 -3.2584136988589307e-07 -0.9999999403953552 1.780594825744629 -0.19509072601795197 -0.9807852506637573 -1.3156791925430298 -3.2584136988589307e-07 -1.0 -1.3156791925430298 -0.19509072601795197 -0.9807851314544678 1.780594825744629 -0.3826838731765747 -0.9238793849945068 -1.3156791925430298 -0.19509072601795197 -0.9807852506637573 -1.3156791925430298 -0.3826838731765747 -0.9238792657852173 1.780594825744629 -0.5555707216262817 -0.8314693570137024 -1.3156791925430298 -0.3826838731765747 -0.9238793849945068 -1.3156791925430298 -0.5555707216262817 -0.8314692378044128 1.780594825744629 -0.7071072459220886 -0.7071064114570618 -1.3156791925430298 -0.5555707216262817 -0.8314693570137024 -1.3156791925430298 -0.7071072459220886 -0.7071062922477722 1.780594825744629 -0.8314700126647949 -0.5555697083473206 -1.3156791925430298 -0.7071072459220886 -0.7071064114570618 -1.3156791925430298 -0.8314700126647949 -0.555569589138031 1.780594825744629 -0.923879861831665 -0.3826826810836792 -1.3156791925430298 -0.8314700126647949 -0.5555697083473206 -1.3156791925430298 -0.923879861831665 -0.3826826214790344 1.780594825744629 -0.9807854294776917 -0.19508947432041168 -1.3156791925430298 -0.923879861831665 -0.3826826810836792 -1.3156791925430298 -0.9807854294776917 -0.1950894296169281 1.780594825744629 -1.0 9.518004162600846e-07 -1.3156791925430298 -0.9807854294776917 -0.19508947432041168 -1.3156791925430298 -1.0 9.99720100480772e-07 1.780594825744629 -0.980785071849823 0.1950913369655609 -1.3156791925430298 -1.0 9.518004162600846e-07 -1.3156791925430298 -0.980785071849823 0.1950913816690445 1.780594825744629 -0.923879086971283 0.38268446922302246 -1.3156791925430298 -0.980785071849823 0.1950913369655609 -1.3156791925430298 -0.923879086971283 0.38268452882766724 1.780594825744629 -0.831468939781189 0.5555711984634399 -1.3156791925430298 -0.923879086971283 0.38268446922302246 -1.3156791925430298 -0.831468939781189 0.5555713176727295 1.780594825744629 -0.7071058750152588 0.7071076035499573 -1.3156791925430298 -0.831468939781189 0.5555711984634399 -1.3156791925430298 -0.7071058750152588 0.7071077227592468 1.780594825744629 -0.5555691123008728 0.8314703106880188 -1.3156791925430298 -0.7071058750152588 0.7071076035499573 -1.3156791925430298 -0.5555691123008728 0.8314704298973083 1.780594825744629 -0.38268208503723145 0.9238800406455994 -1.3156791925430298 -0.5555691123008728 0.8314703106880188 -1.3156791925430298 -0.3826838731765747 -0.9238792657852173 1.780594825744629 0.9238795638084412 -0.3826832175254822 1.780594825744629 -0.923879086971283 0.38268452882766724 1.780594825744629 -0.38268208503723145 0.9238801598548889 1.780594825744629 -0.19508881866931915 0.9807854890823364 -1.3156791925430298 -0.38268208503723145 0.9238800406455994 -1.3156791925430298 -0.19508881866931915 0.9807854890823364 -1.3156791925430298 0.0 1.0 1.780594825744629 0.0 0.9999999403953552 -1.3156791925430298 0.19509008526802063 -0.9807853698730469 -1.3156791925430298 -0.9807854294776917 -0.19508947432041168 -1.3156791925430298 0.9807852506637573 0.19509033858776093 -1.3156791925430298 0.0 1.0 1.780594825744629 0.19509032368659973 0.9807853102684021 1.780594825744629 0.19509032368659973 0.9807851910591125 -1.3156791925430298 0.19509032368659973 0.9807853102684021 1.780594825744629 0.3826834559440613 0.9238795638084412 1.780594825744629 0.3826834559440613 0.9238794445991516 -1.3156791925430298 0.3826834559440613 0.9238795638084412 1.780594825744629 0.5555702447891235 0.8314696550369263 1.780594825744629 0.5555702447891235 0.8314695358276367 -1.3156791925430298 0.5555702447891235 0.8314696550369263 1.780594825744629 0.7071067690849304 0.7071068286895752 1.780594825744629 0.7071067690849304 0.7071067094802856 -1.3156791925430298 0.7071067690849304 0.7071068286895752 1.780594825744629 0.8314696550369263 0.5555702447891235 1.780594825744629 0.8314696550369263 0.555570125579834 -1.3156791925430298 0.8314696550369263 0.5555702447891235 1.780594825744629 0.9238795042037964 0.38268348574638367 1.780594825744629 0.9238795042037964 0.3826834261417389 -1.3156791925430298 0.9238795042037964 0.38268348574638367 1.780594825744629 0.9807852506637573 0.1950903832912445 1.780594825744629 0.9807852506637573 0.19509033858776093 -1.3156791925430298 0.9807852506637573 0.1950903832912445 1.780594825744629 1.0 1.096187887128508e-07 1.780594825744629 1.0 6.169912580844539e-08 -1.3156791925430298 1.0 1.096187887128508e-07 1.780594825744629 0.9807853102684021 -0.1950901746749878 1.780594825744629 0.9807853102684021 -0.19509021937847137 -1.3156791925430298 0.9807853102684021 -0.1950901746749878 1.780594825744629 0.9238795638084412 -0.3826832175254822 1.780594825744629 0.9238795638084412 -0.38268327713012695 -1.3156791925430298 0.9238795638084412 -0.3826832175254822 1.780594825744629 0.8314696550369263 -0.555570125579834 1.780594825744629 0.8314696550369263 -0.5555702447891235 -1.3156791925430298 0.8314696550369263 -0.5555702447891235 -1.3156791925430298 0.8314696550369263 -0.555570125579834 1.780594825744629 0.7071067690849304 -0.7071067094802856 1.780594825744629 0.7071067690849304 -0.7071067094802856 1.780594825744629 0.5555701851844788 -0.8314695954322815 1.780594825744629 0.5555701851844788 -0.831469714641571 -1.3156791925430298 0.5555701851844788 -0.8314695954322815 1.780594825744629 0.38268327713012695 -0.9238795638084412 1.780594825744629 0.38268327713012695 -0.9238796830177307 -1.3156791925430298 0.38268327713012695 -0.9238795638084412 1.780594825744629 0.19509008526802063 -0.9807852506637573 1.780594825744629 0.19509008526802063 -0.9807853698730469 -1.3156791925430298 0.19509008526802063 -0.9807852506637573 1.780594825744629 -3.2584136988589307e-07 -0.9999999403953552 1.780594825744629 -3.2584136988589307e-07 -1.0 -1.3156791925430298 -3.2584136988589307e-07 -0.9999999403953552 1.780594825744629 -0.19509072601795197 -0.9807851314544678 1.780594825744629 -0.19509072601795197 -0.9807852506637573 -1.3156791925430298 -0.19509072601795197 -0.9807851314544678 1.780594825744629 -0.3826838731765747 -0.9238792657852173 1.780594825744629 -0.3826838731765747 -0.9238793849945068 -1.3156791925430298 -0.3826838731765747 -0.9238792657852173 1.780594825744629 -0.5555707216262817 -0.8314692378044128 1.780594825744629 -0.5555707216262817 -0.8314693570137024 -1.3156791925430298 -0.5555707216262817 -0.8314692378044128 1.780594825744629 -0.7071072459220886 -0.7071062922477722 1.780594825744629 -0.7071072459220886 -0.7071064114570618 -1.3156791925430298 -0.7071072459220886 -0.7071062922477722 1.780594825744629 -0.8314700126647949 -0.555569589138031 1.780594825744629 -0.8314700126647949 -0.5555697083473206 -1.3156791925430298 -0.8314700126647949 -0.555569589138031 1.780594825744629 -0.923879861831665 -0.3826826214790344 1.780594825744629 -0.923879861831665 -0.3826826810836792 -1.3156791925430298 -0.923879861831665 -0.3826826214790344 1.780594825744629 -0.9807854294776917 -0.1950894296169281 1.780594825744629 -0.9807854294776917 -0.19508947432041168 -1.3156791925430298 -0.9807854294776917 -0.1950894296169281 1.780594825744629 -1.0 9.99720100480772e-07 1.780594825744629 -1.0 9.518004162600846e-07 -1.3156791925430298 -1.0 9.99720100480772e-07 1.780594825744629 -0.980785071849823 0.1950913816690445 1.780594825744629 -0.980785071849823 0.1950913369655609 -1.3156791925430298 -0.980785071849823 0.1950913816690445 1.780594825744629 -0.923879086971283 0.38268452882766724 1.780594825744629 -0.923879086971283 0.38268446922302246 -1.3156791925430298 -0.923879086971283 0.38268452882766724 1.780594825744629 -0.831468939781189 0.5555713176727295 1.780594825744629 -0.831468939781189 0.5555711984634399 -1.3156791925430298 -0.831468939781189 0.5555713176727295 1.780594825744629 -0.7071058750152588 0.7071077227592468 1.780594825744629 -0.7071058750152588 0.7071076035499573 -1.3156791925430298 -0.7071058750152588 0.7071077227592468 1.780594825744629 -0.5555691123008728 0.8314704298973083 1.780594825744629 -0.5555691123008728 0.8314703106880188 -1.3156791925430298 -0.5555691123008728 0.8314704298973083 1.780594825744629 -0.38268208503723145 0.9238801598548889 1.780594825744629 -0.38268208503723145 0.9238800406455994 -1.3156791925430298 0.3826834559440613 0.9238795638084412 1.780594825744629 0.19509032368659973 0.9807853102684021 1.780594825744629 0.0 1.0 1.780594825744629 0.0 1.0 1.780594825744629 -0.19508881866931915 0.980785608291626 1.780594825744629 -0.38268208503723145 0.9238801598548889 1.780594825744629 -0.38268208503723145 0.9238801598548889 1.780594825744629 -0.5555691123008728 0.8314704298973083 1.780594825744629 -0.7071058750152588 0.7071077227592468 1.780594825744629 -0.7071058750152588 0.7071077227592468 1.780594825744629 -0.831468939781189 0.5555713176727295 1.780594825744629 -0.923879086971283 0.38268452882766724 1.780594825744629 -0.980785071849823 0.1950913816690445 1.780594825744629 -1.0 9.99720100480772e-07 1.780594825744629 -1.0 9.99720100480772e-07 1.780594825744629 -0.9807854294776917 -0.1950894296169281 1.780594825744629 -0.923879861831665 -0.3826826214790344 1.780594825744629 -0.8314700126647949 -0.555569589138031 1.780594825744629 -0.3826838731765747 -0.9238792657852173 1.780594825744629 -0.7071072459220886 -0.7071062922477722 1.780594825744629 -0.5555707216262817 -0.8314692378044128 1.780594825744629 -0.3826838731765747 -0.9238792657852173 1.780594825744629 -0.3826838731765747 -0.9238792657852173 1.780594825744629 -0.19509072601795197 -0.9807851314544678 1.780594825744629 -3.2584136988589307e-07 -0.9999999403953552 1.780594825744629 -3.2584136988589307e-07 -0.9999999403953552 1.780594825744629 0.19509008526802063 -0.9807852506637573 1.780594825744629 0.38268327713012695 -0.9238795638084412 1.780594825744629 0.5555701851844788 -0.8314695954322815 1.780594825744629 0.7071067690849304 -0.7071067094802856 1.780594825744629 0.7071067690849304 -0.7071067094802856 1.780594825744629 0.8314696550369263 -0.555570125579834 1.780594825744629 0.9238795638084412 -0.3826832175254822 1.780594825744629 0.9238795638084412 -0.3826832175254822 1.780594825744629 0.9807853102684021 -0.1950901746749878 1.780594825744629 1.0 1.096187887128508e-07 1.780594825744629 1.0 1.096187887128508e-07 1.780594825744629 0.9807852506637573 0.1950903832912445 1.780594825744629 0.9238795638084412 -0.3826832175254822 1.780594825744629 0.9238795042037964 0.38268348574638367 1.780594825744629 0.8314696550369263 0.5555702447891235 1.780594825744629 0.7071067690849304 0.7071068286895752 1.780594825744629 0.5555702447891235 0.8314696550369263 1.780594825744629 0.3826834559440613 0.9238795638084412 1.780594825744629 0.3826834559440613 0.9238795638084412 1.780594825744629 0.0 1.0 1.780594825744629 -0.923879086971283 0.38268452882766724 1.780594825744629 -0.923879086971283 0.38268452882766724 1.780594825744629 -0.9807854294776917 -0.1950894296169281 1.780594825744629 -0.923879861831665 -0.3826826214790344 1.780594825744629 -0.8314700126647949 -0.555569589138031 1.780594825744629 -0.7071072459220886 -0.7071062922477722 1.780594825744629 0.38268327713012695 -0.9238795638084412 1.780594825744629 0.7071067690849304 -0.7071067094802856 1.780594825744629 0.9238795638084412 -0.3826832175254822 1.780594825744629 0.9238795638084412 -0.3826832175254822 1.780594825744629 0.9807852506637573 0.1950903832912445 1.780594825744629 0.9238795042037964 0.38268348574638367 1.780594825744629 0.9238795042037964 0.38268348574638367 1.780594825744629 0.7071067690849304 0.7071068286895752 1.780594825744629 0.9238795638084412 -0.3826832175254822 1.780594825744629 0.0 1.0 1.780594825744629 -0.38268208503723145 0.9238801598548889 1.780594825744629 -0.923879086971283 0.38268452882766724 1.780594825744629 -0.923879086971283 0.38268452882766724 1.780594825744629 -0.923879861831665 -0.3826826214790344 1.780594825744629 -0.3826838731765747 -0.9238792657852173 1.780594825744629 0.9238795638084412 -0.3826832175254822 1.780594825744629 0.7071067690849304 0.7071068286895752 1.780594825744629 0.3826834559440613 0.9238795638084412 1.780594825744629 -0.38268208503723145 0.9238801598548889 1.780594825744629 -0.19508881866931915 0.980785608291626 1.780594825744629 -0.19508881866931915 0.9807854890823364 -1.3156791925430298 -0.19508881866931915 0.9807854890823364 -1.3156791925430298 -0.19508881866931915 0.980785608291626 1.780594825744629 0.0 1.0 1.780594825744629 -0.19508881866931915 0.9807854890823364 -1.3156791925430298 0.0 0.9999999403953552 -1.3156791925430298 0.19509032368659973 0.9807851910591125 -1.3156791925430298 0.19509032368659973 0.9807851910591125 -1.3156791925430298 0.3826834559440613 0.9238794445991516 -1.3156791925430298 0.5555702447891235 0.8314695358276367 -1.3156791925430298 0.5555702447891235 0.8314695358276367 -1.3156791925430298 0.7071067690849304 0.7071067094802856 -1.3156791925430298 0.8314696550369263 0.555570125579834 -1.3156791925430298 0.9238795042037964 0.3826834261417389 -1.3156791925430298 0.9807852506637573 0.19509033858776093 -1.3156791925430298 1.0 6.169912580844539e-08 -1.3156791925430298 0.9807853102684021 -0.19509021937847137 -1.3156791925430298 0.9238795638084412 -0.38268327713012695 -1.3156791925430298 0.8314696550369263 -0.5555702447891235 -1.3156791925430298 0.7071067690849304 -0.7071068286895752 -1.3156791925430298 0.5555701851844788 -0.831469714641571 -1.3156791925430298 0.5555701851844788 -0.831469714641571 -1.3156791925430298 0.38268327713012695 -0.9238796830177307 -1.3156791925430298 -3.2584136988589307e-07 -1.0 -1.3156791925430298 -0.5555707216262817 -0.8314693570137024 -1.3156791925430298 -0.19509072601795197 -0.9807852506637573 -1.3156791925430298 -0.3826838731765747 -0.9238793849945068 -1.3156791925430298 -0.5555707216262817 -0.8314693570137024 -1.3156791925430298 -0.7071072459220886 -0.7071064114570618 -1.3156791925430298 -0.8314700126647949 -0.5555697083473206 -1.3156791925430298 -0.8314700126647949 -0.5555697083473206 -1.3156791925430298 -0.923879861831665 -0.3826826810836792 -1.3156791925430298 -0.9807854294776917 -0.19508947432041168 -1.3156791925430298 -0.9807854294776917 -0.19508947432041168 -1.3156791925430298 -1.0 9.518004162600846e-07 -1.3156791925430298 -0.980785071849823 0.1950913369655609 -1.3156791925430298 -0.980785071849823 0.1950913369655609 -1.3156791925430298 -0.923879086971283 0.38268446922302246 -1.3156791925430298 -0.831468939781189 0.5555711984634399 -1.3156791925430298 -0.831468939781189 0.5555711984634399 -1.3156791925430298 -0.7071058750152588 0.7071076035499573 -1.3156791925430298 -0.19508881866931915 0.9807854890823364 -1.3156791925430298 -0.5555691123008728 0.8314703106880188 -1.3156791925430298 -0.38268208503723145 0.9238800406455994 -1.3156791925430298 -0.19508881866931915 0.9807854890823364 -1.3156791925430298 0.19509032368659973 0.9807851910591125 -1.3156791925430298 0.7071067690849304 0.7071067094802856 -1.3156791925430298 0.8314696550369263 0.555570125579834 -1.3156791925430298 0.9807852506637573 0.19509033858776093 -1.3156791925430298 0.8314696550369263 -0.5555702447891235 -1.3156791925430298 -0.5555707216262817 -0.8314693570137024 -1.3156791925430298 -0.8314700126647949 -0.5555697083473206 -1.3156791925430298 -0.9807854294776917 -0.19508947432041168 -1.3156791925430298 -0.9807854294776917 -0.19508947432041168 -1.3156791925430298 -0.980785071849823 0.1950913369655609 -1.3156791925430298 -0.19508881866931915 0.9807854890823364 -1.3156791925430298 -0.7071058750152588 0.7071076035499573 -1.3156791925430298 -0.5555691123008728 0.8314703106880188 -1.3156791925430298 -0.19508881866931915 0.9807854890823364 -1.3156791925430298 0.9807852506637573 0.19509033858776093 -1.3156791925430298 0.9807852506637573 0.19509033858776093 -1.3156791925430298 0.5555701851844788 -0.831469714641571 -1.3156791925430298 0.19509008526802063 -0.9807853698730469 -1.3156791925430298 0.19509008526802063 -0.9807853698730469 -1.3156791925430298 -0.5555707216262817 -0.8314693570137024 -1.3156791925430298 -0.9807854294776917 -0.19508947432041168 -1.3156791925430298 -0.831468939781189 0.5555711984634399 -1.3156791925430298 - - - - - - - - - - 0.09801729023456573 0.9951846599578857 0.0 0.09801729023456573 0.9951846599578857 0.0 0.09801729023456573 0.9951846599578857 0.0 0.2902846336364746 0.9569403529167175 -4.9099678989250606e-08 0.2902846336364746 0.9569403529167175 -4.9099678989250606e-08 0.2902846336364746 0.9569403529167175 -4.9099678989250606e-08 0.4713967740535736 0.8819212317466736 -9.819938640021064e-08 0.4713967740535736 0.8819212317466736 -9.819938640021064e-08 0.4713967740535736 0.8819212317466736 -9.819938640021064e-08 0.6343936324119568 0.7730101346969604 -2.4549855481836858e-08 0.6343936324119568 0.7730101346969604 -2.4549855481836858e-08 0.6343936324119568 0.7730101346969604 -2.4549855481836858e-08 0.7730103135108948 0.634393572807312 -2.4549830612841106e-08 0.7730103135108948 0.634393572807312 -2.4549830612841106e-08 0.7730103135108948 0.634393572807312 -2.4549830612841106e-08 0.8819213509559631 0.4713965654373169 -1.2274929517275268e-08 0.8819213509559631 0.4713965654373169 -1.2274929517275268e-08 0.8819213509559631 0.4713965654373169 -1.2274929517275268e-08 0.9569403529167175 0.2902844250202179 -6.137461205923955e-09 0.9569403529167175 0.2902844250202179 -6.137461205923955e-09 0.9569403529167175 0.2902844250202179 -6.137461205923955e-09 0.9951847791671753 0.0980171337723732 -1.1507741426441953e-09 0.9951847791671753 0.0980171337723732 -1.1507741426441953e-09 0.9951847791671753 0.0980171337723732 -1.1507741426441953e-09 0.9951847791671753 -0.09801635146141052 1.5343655235255937e-09 0.9951847791671753 -0.09801635146141052 1.5343655235255937e-09 0.9951847791671753 -0.09801635146141052 1.5343655235255937e-09 0.9569403529167175 -0.29028448462486267 6.137462094102375e-09 0.9569403529167175 -0.29028448462486267 6.137462094102375e-09 0.9569403529167175 -0.29028448462486267 6.137462094102375e-09 0.8819213509559631 -0.4713965952396393 0.0 0.8819213509559631 -0.4713965952396393 0.0 0.8819213509559631 -0.4713965952396393 0.0 0.7730103135108948 -0.634393572807312 2.4549830612841106e-08 0.7730103135108948 -0.634393572807312 2.4549830612841106e-08 0.7730103135108948 -0.634393572807312 2.4549830612841106e-08 0.6343934535980225 -0.7730103731155396 7.364951670751907e-08 0.6343934535980225 -0.7730103731155396 7.364951670751907e-08 0.6343934535980225 -0.7730103731155396 7.364951670751907e-08 0.47139668464660645 -0.8819212913513184 4.9099654120254854e-08 0.47139668464660645 -0.8819212913513184 4.9099654120254854e-08 0.47139668464660645 -0.8819212913513184 4.9099654120254854e-08 0.2902841866016388 -0.9569404721260071 0.0 0.2902841866016388 -0.9569404721260071 0.0 0.2902841866016388 -0.9569404721260071 0.0 0.0980166494846344 -0.9951847791671753 4.909966477839589e-08 0.0980166494846344 -0.9951847791671753 4.909966477839589e-08 0.0980166494846344 -0.9951847791671753 4.909966477839589e-08 -0.09801725298166275 -0.9951847195625305 0.0 -0.09801725298166275 -0.9951847195625305 0.0 -0.09801725298166275 -0.9951847195625305 0.0 -0.2902851998806 -0.9569401741027832 4.909966833110957e-08 -0.2902851998806 -0.9569401741027832 4.909966833110957e-08 -0.2902851998806 -0.9569401741027832 4.909966833110957e-08 -0.4713971018791199 -0.881921112537384 0.0 -0.4713971018791199 -0.881921112537384 0.0 -0.4713971018791199 -0.881921112537384 0.0 -0.6343937516212463 -0.7730100154876709 2.4549839494625303e-08 -0.6343937516212463 -0.7730100154876709 2.4549839494625303e-08 -0.6343937516212463 -0.7730100154876709 2.4549839494625303e-08 -0.7730109095573425 -0.6343927383422852 2.4549830612841106e-08 -0.7730109095573425 -0.6343927383422852 2.4549830612841106e-08 -0.7730109095573425 -0.6343927383422852 2.4549830612841106e-08 -0.8819217085838318 -0.4713958501815796 2.454982173105691e-08 -0.8819217085838318 -0.4713958501815796 2.454982173105691e-08 -0.8819217085838318 -0.4713958501815796 2.454982173105691e-08 -0.9569408297538757 -0.29028281569480896 6.1374603177455356e-09 -0.9569408297538757 -0.29028281569480896 6.1374603177455356e-09 -0.9569408297538757 -0.29028281569480896 6.1374603177455356e-09 -0.9951847791671753 -0.09801628440618515 1.5343645243248716e-09 -0.9951847791671753 -0.09801628440618515 1.5343645243248716e-09 -0.9951847791671753 -0.09801628440618515 1.5343645243248716e-09 -0.995184600353241 0.0980178564786911 -1.150773365488078e-09 -0.995184600353241 0.0980178564786911 -1.150773365488078e-09 -0.995184600353241 0.0980178564786911 -1.150773365488078e-09 -0.9569399952888489 0.2902858257293701 0.0 -0.9569399952888489 0.2902858257293701 0.0 -0.9569399952888489 0.2902858257293701 0.0 -0.8819206953048706 0.47139772772789 -1.2274918859134232e-08 -0.8819206953048706 0.47139772772789 -1.2274918859134232e-08 -0.8819206953048706 0.47139772772789 -1.2274918859134232e-08 -0.7730098366737366 0.6343939900398254 0.0 -0.7730098366737366 0.6343939900398254 0.0 -0.7730098366737366 0.6343939900398254 0.0 -0.6343924403190613 0.7730110287666321 -2.4549834165554785e-08 -0.6343924403190613 0.7730110287666321 -2.4549834165554785e-08 -0.6343924403190613 0.7730110287666321 -2.4549834165554785e-08 -0.4713955819606781 0.8819218873977661 0.0 -0.4713955819606781 0.8819218873977661 0.0 -0.4713955819606781 0.8819218873977661 0.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -0.2902830243110657 0.9569408893585205 -4.909966477839589e-08 -0.2902830243110657 0.9569408893585205 -4.909966477839589e-08 -0.2902830243110657 0.9569408893585205 -4.909966477839589e-08 -0.09801653772592545 0.9951847791671753 -4.9100066235041595e-08 -0.09801653772592545 0.9951847791671753 -4.9100066235041595e-08 -0.09801653772592545 0.9951847791671753 -4.9100066235041595e-08 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.09801699966192245 0.9951848387718201 -4.909968964739164e-08 0.09801699966192245 0.9951848387718201 -4.909968964739164e-08 0.09801699966192245 0.9951848387718201 -4.909968964739164e-08 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.2902846932411194 0.9569403529167175 0.0 0.4713965952396393 0.8819212913513184 0.0 0.4713965952396393 0.8819212913513184 0.0 0.4713965952396393 0.8819212913513184 0.0 0.6343932151794434 0.7730104923248291 -2.4549841270982142e-08 0.6343932151794434 0.7730104923248291 -2.4549841270982142e-08 0.6343932151794434 0.7730104923248291 -2.4549841270982142e-08 0.7730103135108948 0.634393572807312 -2.4549832389197945e-08 0.7730103135108948 0.634393572807312 -2.4549832389197945e-08 0.7730103135108948 0.634393572807312 -2.4549832389197945e-08 0.8819214105606079 0.47139644622802734 -2.454985192912318e-08 0.8819214105606079 0.47139644622802734 -2.454985192912318e-08 0.8819214105606079 0.47139644622802734 -2.454985192912318e-08 0.9569401741027832 0.2902851700782776 -6.137459873656326e-09 0.9569401741027832 0.2902851700782776 -6.137459873656326e-09 0.9569401741027832 0.2902851700782776 -6.137459873656326e-09 0.9951846599578857 0.0980171337723732 -1.5343655235255937e-09 0.9951846599578857 0.0980171337723732 -1.5343655235255937e-09 0.9951846599578857 0.0980171337723732 -1.5343655235255937e-09 0.9951846599578857 -0.09801792353391647 1.1507741426441953e-09 0.9951846599578857 -0.09801792353391647 1.1507741426441953e-09 0.9951846599578857 -0.09801792353391647 1.1507741426441953e-09 0.9569403529167175 -0.29028451442718506 6.137462982280795e-09 0.9569403529167175 -0.29028451442718506 6.137462982280795e-09 0.9569403529167175 -0.29028451442718506 6.137462982280795e-09 0.8819215893745422 -0.4713960886001587 2.4549834165554785e-08 0.8819215893745422 -0.4713960886001587 2.4549834165554785e-08 0.8819215893745422 -0.4713960886001587 2.4549834165554785e-08 0.7730103135108948 -0.634393572807312 2.4549832389197945e-08 0.7730103135108948 -0.634393572807312 2.4549832389197945e-08 0.7730103135108948 -0.634393572807312 2.4549832389197945e-08 0.6343935132026672 -0.7730103731155396 0.0 0.6343935132026672 -0.7730103731155396 0.0 0.6343935132026672 -0.7730103731155396 0.0 0.47139689326286316 -0.8819211721420288 0.0 0.47139689326286316 -0.8819211721420288 0.0 0.47139689326286316 -0.8819211721420288 0.0 0.2902843654155731 -0.9569404125213623 9.819936508392857e-08 0.2902843654155731 -0.9569404125213623 9.819936508392857e-08 0.2902843654155731 -0.9569404125213623 9.819936508392857e-08 0.09801694005727768 -0.9951847791671753 0.0 0.09801694005727768 -0.9951847791671753 0.0 0.09801694005727768 -0.9951847791671753 0.0 -0.09801755845546722 -0.9951847195625305 0.0 -0.09801755845546722 -0.9951847195625305 0.0 -0.09801755845546722 -0.9951847195625305 0.0 -0.2902851700782776 -0.9569401741027832 4.909966833110957e-08 -0.2902851700782776 -0.9569401741027832 4.909966833110957e-08 -0.2902851700782776 -0.9569401741027832 4.909966833110957e-08 -0.4713971018791199 -0.881921112537384 4.909966477839589e-08 -0.4713971018791199 -0.881921112537384 4.909966477839589e-08 -0.4713971018791199 -0.881921112537384 4.909966477839589e-08 -0.6343933939933777 -0.7730103731155396 2.4549825283770588e-08 -0.6343933939933777 -0.7730103731155396 2.4549825283770588e-08 -0.6343933939933777 -0.7730103731155396 2.4549825283770588e-08 -0.7730112671852112 -0.6343923211097717 2.454984482369582e-08 -0.7730112671852112 -0.6343923211097717 2.454984482369582e-08 -0.7730112671852112 -0.6343923211097717 2.454984482369582e-08 -0.8819213509559631 -0.4713965952396393 0.0 -0.8819213509559631 -0.4713965952396393 0.0 -0.8819213509559631 -0.4713965952396393 0.0 -0.9569404721260071 -0.29028430581092834 6.137458541388696e-09 -0.9569404721260071 -0.29028430581092834 6.137458541388696e-09 -0.9569404721260071 -0.29028430581092834 6.137458541388696e-09 -0.9951848387718201 -0.09801627695560455 1.1507732544657756e-09 -0.9951848387718201 -0.09801627695560455 1.1507732544657756e-09 -0.9951848387718201 -0.09801627695560455 1.1507732544657756e-09 -0.995184600353241 0.09801864624023438 -1.5343645243248716e-09 -0.995184600353241 0.09801864624023438 -1.5343645243248716e-09 -0.995184600353241 0.09801864624023438 -1.5343645243248716e-09 -0.9569399952888489 0.29028579592704773 -6.137456765031857e-09 -0.9569399952888489 0.29028579592704773 -6.137456765031857e-09 -0.9569399952888489 0.29028579592704773 -6.137456765031857e-09 -0.8819208741188049 0.47139760851860046 -1.2274915306420553e-08 -0.8819208741188049 0.47139760851860046 -1.2274915306420553e-08 -0.8819208741188049 0.47139760851860046 -1.2274915306420553e-08 -0.7730095386505127 0.6343944072723389 -4.909966833110957e-08 -0.7730095386505127 0.6343944072723389 -4.909966833110957e-08 -0.7730095386505127 0.6343944072723389 -4.909966833110957e-08 -0.6343920826911926 0.7730113863945007 -2.454981995470007e-08 -0.6343920826911926 0.7730113863945007 -2.454981995470007e-08 -0.6343920826911926 0.7730113863945007 -2.454981995470007e-08 -0.4713955819606781 0.8819218873977661 -4.909966477839589e-08 -0.4713955819606781 0.8819218873977661 -4.909966477839589e-08 -0.4713955819606781 0.8819218873977661 -4.909966477839589e-08 -9.937868981069187e-07 0.0 1.0 -9.937868981069187e-07 0.0 1.0 -9.937868981069187e-07 0.0 1.0 1.9875737962138373e-06 0.0 1.0 1.9875737962138373e-06 0.0 1.0 1.9875737962138373e-06 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 1.0 0.0 0.0 1.0 -2.7370601856091525e-06 0.0 1.0 -2.7370601856091525e-06 0.0 1.0 -2.7370601856091525e-06 0.0 1.0 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 0.0 0.0 0.9999999403953552 -1.9875421912729507e-06 0.0 1.0 -1.9875421912729507e-06 0.0 1.0 -1.9875421912729507e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 7.95020787336398e-06 0.0 1.0 7.95020787336398e-06 0.0 1.0 7.95020787336398e-06 0.0 1.0 1.5900472135399468e-05 0.0 1.0 1.5900472135399468e-05 0.0 1.0 1.5900472135399468e-05 0.0 1.0 -1.0737872798927128e-05 0.0 1.0 -1.0737872798927128e-05 0.0 1.0 -1.0737872798927128e-05 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -7.777159680699697e-07 0.0 1.0 -7.777159680699697e-07 0.0 1.0 -7.777159680699697e-07 0.0 1.0 -2.7370585939934244e-06 0.0 1.0 -2.7370585939934244e-06 0.0 1.0 -2.7370585939934244e-06 0.0 1.0 0.0 0.0 1.0 0.0 0.0 1.0 -2.0461577605601633e-06 0.0 1.0 -2.0461577605601633e-06 0.0 1.0 -2.0461577605601633e-06 0.0 1.0 4.105591870029457e-06 0.0 1.0 4.105591870029457e-06 0.0 1.0 4.105591870029457e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 1.4370301641974947e-06 0.0 1.0 7.185175263657584e-07 0.0 1.0 7.185175263657584e-07 0.0 1.0 7.185175263657584e-07 0.0 1.0 -2.877962970160297e-07 0.0 0.9999999403953552 -2.877962970160297e-07 0.0 0.9999999403953552 -2.877962970160297e-07 0.0 0.9999999403953552 -7.777150585752679e-07 0.0 1.0 -7.777150585752679e-07 0.0 1.0 -7.777150585752679e-07 0.0 1.0 -0.29028311371803284 0.9569408893585205 0.0 -0.29028311371803284 0.9569408893585205 0.0 -0.29028311371803284 0.9569408893585205 0.0 -0.09801623970270157 0.9951848387718201 -4.9100069787755274e-08 -0.09801623970270157 0.9951848387718201 -4.9100069787755274e-08 -0.09801623970270157 0.9951848387718201 -4.9100069787755274e-08 4.968973712493607e-07 0.0 -1.0 4.968973712493607e-07 0.0 -1.0 4.968973712493607e-07 0.0 -1.0 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -1.0 0.0 0.0 -1.0 -7.950263352540787e-06 0.0 -1.0 -7.950263352540787e-06 0.0 -1.0 -7.950263352540787e-06 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 -3.9751080294081476e-06 0.0 -1.0 -3.9751080294081476e-06 0.0 -1.0 -3.9751080294081476e-06 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 3.975115760113113e-06 0.0 -1.0 3.975115760113113e-06 0.0 -1.0 3.975115760113113e-06 0.0 -1.0 -3.975111667386955e-06 0.0 -0.9999999403953552 -3.975111667386955e-06 0.0 -0.9999999403953552 -3.975111667386955e-06 0.0 -0.9999999403953552 -1.590045212651603e-05 0.0 -1.0 -1.590045212651603e-05 0.0 -1.0 -1.590045212651603e-05 0.0 -1.0 -3.975115760113113e-06 0.0 -1.0 -3.975115760113113e-06 0.0 -1.0 -3.975115760113113e-06 0.0 -1.0 -1.3685263411389315e-06 0.0 -1.0 -1.3685263411389315e-06 0.0 -1.0 -1.3685263411389315e-06 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 0.0 0.0 -1.0 -2.6844672902370803e-06 0.0 -1.0 -2.6844672902370803e-06 0.0 -1.0 -2.6844672902370803e-06 0.0 -1.0 0.0 0.0 -1.0 -1.023077516038029e-06 0.0 -0.9999999403953552 -1.023077516038029e-06 0.0 -0.9999999403953552 -1.023077516038029e-06 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 0.0 0.0 -0.9999999403953552 1.3422314850686234e-06 0.0 -1.0 1.3422314850686234e-06 0.0 -1.0 1.3422314850686234e-06 0.0 -1.0 0.0 0.0 -0.9999999403953552 -4.860713715970633e-07 0.0 -1.0 -4.860713715970633e-07 0.0 -1.0 -4.860713715970633e-07 0.0 -1.0 2.87796382281158e-07 0.0 -1.0 2.87796382281158e-07 0.0 -1.0 2.87796382281158e-07 0.0 -1.0 0.0 0.0 -0.9999999403953552 - - - - - - - - - - - - - - -

0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 92 203 204 205 206 207 92 208 209 210 211 212 213 214 215 216 217 218 219 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 233 234 235 236 237 238 198 200 203 239 240 241 242 243 90 90 217 91 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 217 219 91 259 260 261 235 92 91 262 263 264 265 266 267 268 269 270 271 272 273 274 275 101 276 277 278 101 279 280 280 281 101 282 283 284 285 286 99 99 287 288 289 290 288 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 308 309 274 310 311 312 101 281 313 313 285 101 287 289 288 314 315 316 317 318 319 320 321 322 319 273 323 324 325 326 327 328 329 318 330 319 308 101 100

-
-
-
-
- - - - 1.399999976158142 0.0 0.0 0.0 0.0 2.0 0.0 0.0 0.0 0.0 0.6000000238418579 0.6000000238418579 0.0 0.0 0.0 1.0 - - - - - - - - - - 0.20000000298023224 0.0 0.0 1.0860042572021484 0.0 0.5 0.0 1.4221534729003906 0.0 0.0 0.20000000298023224 1.1518471240997314 0.0 0.0 0.0 1.0 - - - - - 0.30000001192092896 0.0 0.0 -0.7435442209243774 0.0 0.30000001192092896 0.0 -1.413694977760315 0.0 0.0 0.10000000149011612 1.2000000476837158 0.0 0.0 0.0 1.0 - - - - - 0.30000001192092896 0.0 0.0 0.056455761194229126 0.0 0.30000001192092896 0.0 -1.413694977760315 0.0 0.0 0.10000000149011612 1.2000000476837158 0.0 0.0 0.0 1.0 - - - - - 0.30000001192092896 0.0 0.0 -0.7435442209243774 0.0 0.30000001192092896 0.0 -0.6136950850486755 0.0 0.0 0.10000000149011612 1.2000000476837158 0.0 0.0 0.0 1.0 - - - - - 0.30000001192092896 0.0 0.0 0.056455761194229126 0.0 0.30000001192092896 0.0 -0.6136950850486755 0.0 0.0 0.10000000149011612 1.2000000476837158 0.0 0.0 0.0 1.0 - - - - - 0.30000001192092896 0.0 0.0 -0.7435442209243774 0.0 0.30000001192092896 0.0 0.186304971575737 0.0 0.0 0.10000000149011612 1.2000000476837158 0.0 0.0 0.0 1.0 - - - - - 0.30000001192092896 0.0 0.0 0.056455761194229126 0.0 0.30000001192092896 0.0 0.186304971575737 0.0 0.0 0.10000000149011612 1.2000000476837158 0.0 0.0 0.0 1.0 - - - - - 0.30000001192092896 0.0 0.0 -0.7435442209243774 0.0 0.30000001192092896 0.0 0.9863049387931824 0.0 0.0 0.10000000149011612 1.2000000476837158 0.0 0.0 0.0 1.0 - - - - - 0.30000001192092896 0.0 0.0 0.056455761194229126 0.0 0.30000001192092896 0.0 0.9863049387931824 0.0 0.0 0.10000000149011612 1.2000000476837158 0.0 0.0 0.0 1.0 - - - - - 1.0395472049713135 0.0 0.0 -0.30860060453414917 0.0 -4.544004994500028e-08 -1.0395472049713135 0.0715785026550293 0.0 1.0395472049713135 -4.544004994500028e-08 1.2000000476837158 0.0 0.0 0.0 1.0 - - - - - - - - - - - - - -
diff --git a/incubator.dae.import b/incubator.dae.import deleted file mode 100644 index 7213597..0000000 --- a/incubator.dae.import +++ /dev/null @@ -1,1049 +0,0 @@ -[remap] - -importer="scene" -type="PackedScene" -path="res://.import/incubator.dae-4b7f472b1138d805934556e7a5cb8769.scn" - -[params] - -nodes/root_type="Spatial" -nodes/root_name="Scene Root" -nodes/custom_script="" -materials/location=0 -materials/storage=0 -geometry/compress=true -geometry/ensure_tangents=true -geometry/storage=0 -animation/import=true -animation/fps=15 -animation/filter_script="" -animation/optimizer/enabled=true -animation/optimizer/max_linear_error=0.05 -animation/optimizer/max_angular_error=0.01 -animation/optimizer/max_angle=22 -animation/optimizer/remove_unused_tracks=true -animation/clips/amount=0 -animation/clip_1/name="" -animation/clip_1/start_frame=0 -animation/clip_1/end_frame=0 -animation/clip_1/loops=false -animation/clip_2/name="" -animation/clip_2/start_frame=0 -animation/clip_2/end_frame=0 -animation/clip_2/loops=false -animation/clip_3/name="" -animation/clip_3/start_frame=0 -animation/clip_3/end_frame=0 -animation/clip_3/loops=false -animation/clip_4/name="" -animation/clip_4/start_frame=0 -animation/clip_4/end_frame=0 -animation/clip_4/loops=false -animation/clip_5/name="" -animation/clip_5/start_frame=0 -animation/clip_5/end_frame=0 -animation/clip_5/loops=false -animation/clip_6/name="" -animation/clip_6/start_frame=0 -animation/clip_6/end_frame=0 -animation/clip_6/loops=false -animation/clip_7/name="" -animation/clip_7/start_frame=0 -animation/clip_7/end_frame=0 -animation/clip_7/loops=false -animation/clip_8/name="" -animation/clip_8/start_frame=0 -animation/clip_8/end_frame=0 -animation/clip_8/loops=false -animation/clip_9/name="" -animation/clip_9/start_frame=0 -animation/clip_9/end_frame=0 -animation/clip_9/loops=false -animation/clip_10/name="" -animation/clip_10/start_frame=0 -animation/clip_10/end_frame=0 -animation/clip_10/loops=false -animation/clip_11/name="" -animation/clip_11/start_frame=0 -animation/clip_11/end_frame=0 -animation/clip_11/loops=false -animation/clip_12/name="" -animation/clip_12/start_frame=0 -animation/clip_12/end_frame=0 -animation/clip_12/loops=false -animation/clip_13/name="" -animation/clip_13/start_frame=0 -animation/clip_13/end_frame=0 -animation/clip_13/loops=false -animation/clip_14/name="" -animation/clip_14/start_frame=0 -animation/clip_14/end_frame=0 -animation/clip_14/loops=false -animation/clip_15/name="" -animation/clip_15/start_frame=0 -animation/clip_15/end_frame=0 -animation/clip_15/loops=false -animation/clip_16/name="" -animation/clip_16/start_frame=0 -animation/clip_16/end_frame=0 -animation/clip_16/loops=false -animation/clip_17/name="" -animation/clip_17/start_frame=0 -animation/clip_17/end_frame=0 -animation/clip_17/loops=false -animation/clip_18/name="" -animation/clip_18/start_frame=0 -animation/clip_18/end_frame=0 -animation/clip_18/loops=false -animation/clip_19/name="" -animation/clip_19/start_frame=0 -animation/clip_19/end_frame=0 -animation/clip_19/loops=false -animation/clip_20/name="" -animation/clip_20/start_frame=0 -animation/clip_20/end_frame=0 -animation/clip_20/loops=false -animation/clip_21/name="" -animation/clip_21/start_frame=0 -animation/clip_21/end_frame=0 -animation/clip_21/loops=false -animation/clip_22/name="" -animation/clip_22/start_frame=0 -animation/clip_22/end_frame=0 -animation/clip_22/loops=false -animation/clip_23/name="" -animation/clip_23/start_frame=0 -animation/clip_23/end_frame=0 -animation/clip_23/loops=false -animation/clip_24/name="" -animation/clip_24/start_frame=0 -animation/clip_24/end_frame=0 -animation/clip_24/loops=false -animation/clip_25/name="" -animation/clip_25/start_frame=0 -animation/clip_25/end_frame=0 -animation/clip_25/loops=false -animation/clip_26/name="" -animation/clip_26/start_frame=0 -animation/clip_26/end_frame=0 -animation/clip_26/loops=false -animation/clip_27/name="" -animation/clip_27/start_frame=0 -animation/clip_27/end_frame=0 -animation/clip_27/loops=false -animation/clip_28/name="" -animation/clip_28/start_frame=0 -animation/clip_28/end_frame=0 -animation/clip_28/loops=false -animation/clip_29/name="" -animation/clip_29/start_frame=0 -animation/clip_29/end_frame=0 -animation/clip_29/loops=false -animation/clip_30/name="" -animation/clip_30/start_frame=0 -animation/clip_30/end_frame=0 -animation/clip_30/loops=false -animation/clip_31/name="" -animation/clip_31/start_frame=0 -animation/clip_31/end_frame=0 -animation/clip_31/loops=false -animation/clip_32/name="" -animation/clip_32/start_frame=0 -animation/clip_32/end_frame=0 -animation/clip_32/loops=false -animation/clip_33/name="" -animation/clip_33/start_frame=0 -animation/clip_33/end_frame=0 -animation/clip_33/loops=false -animation/clip_34/name="" -animation/clip_34/start_frame=0 -animation/clip_34/end_frame=0 -animation/clip_34/loops=false -animation/clip_35/name="" -animation/clip_35/start_frame=0 -animation/clip_35/end_frame=0 -animation/clip_35/loops=false -animation/clip_36/name="" -animation/clip_36/start_frame=0 -animation/clip_36/end_frame=0 -animation/clip_36/loops=false -animation/clip_37/name="" -animation/clip_37/start_frame=0 -animation/clip_37/end_frame=0 -animation/clip_37/loops=false -animation/clip_38/name="" -animation/clip_38/start_frame=0 -animation/clip_38/end_frame=0 -animation/clip_38/loops=false -animation/clip_39/name="" -animation/clip_39/start_frame=0 -animation/clip_39/end_frame=0 -animation/clip_39/loops=false -animation/clip_40/name="" -animation/clip_40/start_frame=0 -animation/clip_40/end_frame=0 -animation/clip_40/loops=false -animation/clip_41/name="" -animation/clip_41/start_frame=0 -animation/clip_41/end_frame=0 -animation/clip_41/loops=false -animation/clip_42/name="" -animation/clip_42/start_frame=0 -animation/clip_42/end_frame=0 -animation/clip_42/loops=false -animation/clip_43/name="" -animation/clip_43/start_frame=0 -animation/clip_43/end_frame=0 -animation/clip_43/loops=false -animation/clip_44/name="" -animation/clip_44/start_frame=0 -animation/clip_44/end_frame=0 -animation/clip_44/loops=false -animation/clip_45/name="" -animation/clip_45/start_frame=0 -animation/clip_45/end_frame=0 -animation/clip_45/loops=false -animation/clip_46/name="" -animation/clip_46/start_frame=0 -animation/clip_46/end_frame=0 -animation/clip_46/loops=false -animation/clip_47/name="" -animation/clip_47/start_frame=0 -animation/clip_47/end_frame=0 -animation/clip_47/loops=false -animation/clip_48/name="" -animation/clip_48/start_frame=0 -animation/clip_48/end_frame=0 -animation/clip_48/loops=false -animation/clip_49/name="" -animation/clip_49/start_frame=0 -animation/clip_49/end_frame=0 -animation/clip_49/loops=false -animation/clip_50/name="" -animation/clip_50/start_frame=0 -animation/clip_50/end_frame=0 -animation/clip_50/loops=false -animation/clip_51/name="" -animation/clip_51/start_frame=0 -animation/clip_51/end_frame=0 -animation/clip_51/loops=false -animation/clip_52/name="" -animation/clip_52/start_frame=0 -animation/clip_52/end_frame=0 -animation/clip_52/loops=false -animation/clip_53/name="" -animation/clip_53/start_frame=0 -animation/clip_53/end_frame=0 -animation/clip_53/loops=false -animation/clip_54/name="" -animation/clip_54/start_frame=0 -animation/clip_54/end_frame=0 -animation/clip_54/loops=false -animation/clip_55/name="" -animation/clip_55/start_frame=0 -animation/clip_55/end_frame=0 -animation/clip_55/loops=false -animation/clip_56/name="" -animation/clip_56/start_frame=0 -animation/clip_56/end_frame=0 -animation/clip_56/loops=false -animation/clip_57/name="" -animation/clip_57/start_frame=0 -animation/clip_57/end_frame=0 -animation/clip_57/loops=false -animation/clip_58/name="" -animation/clip_58/start_frame=0 -animation/clip_58/end_frame=0 -animation/clip_58/loops=false -animation/clip_59/name="" -animation/clip_59/start_frame=0 -animation/clip_59/end_frame=0 -animation/clip_59/loops=false -animation/clip_60/name="" -animation/clip_60/start_frame=0 -animation/clip_60/end_frame=0 -animation/clip_60/loops=false -animation/clip_61/name="" -animation/clip_61/start_frame=0 -animation/clip_61/end_frame=0 -animation/clip_61/loops=false -animation/clip_62/name="" -animation/clip_62/start_frame=0 -animation/clip_62/end_frame=0 -animation/clip_62/loops=false -animation/clip_63/name="" -animation/clip_63/start_frame=0 -animation/clip_63/end_frame=0 -animation/clip_63/loops=false -animation/clip_64/name="" -animation/clip_64/start_frame=0 -animation/clip_64/end_frame=0 -animation/clip_64/loops=false -animation/clip_65/name="" -animation/clip_65/start_frame=0 -animation/clip_65/end_frame=0 -animation/clip_65/loops=false -animation/clip_66/name="" -animation/clip_66/start_frame=0 -animation/clip_66/end_frame=0 -animation/clip_66/loops=false -animation/clip_67/name="" -animation/clip_67/start_frame=0 -animation/clip_67/end_frame=0 -animation/clip_67/loops=false -animation/clip_68/name="" -animation/clip_68/start_frame=0 -animation/clip_68/end_frame=0 -animation/clip_68/loops=false -animation/clip_69/name="" -animation/clip_69/start_frame=0 -animation/clip_69/end_frame=0 -animation/clip_69/loops=false -animation/clip_70/name="" -animation/clip_70/start_frame=0 -animation/clip_70/end_frame=0 -animation/clip_70/loops=false -animation/clip_71/name="" -animation/clip_71/start_frame=0 -animation/clip_71/end_frame=0 -animation/clip_71/loops=false -animation/clip_72/name="" -animation/clip_72/start_frame=0 -animation/clip_72/end_frame=0 -animation/clip_72/loops=false -animation/clip_73/name="" -animation/clip_73/start_frame=0 -animation/clip_73/end_frame=0 -animation/clip_73/loops=false -animation/clip_74/name="" -animation/clip_74/start_frame=0 -animation/clip_74/end_frame=0 -animation/clip_74/loops=false -animation/clip_75/name="" -animation/clip_75/start_frame=0 -animation/clip_75/end_frame=0 -animation/clip_75/loops=false -animation/clip_76/name="" -animation/clip_76/start_frame=0 -animation/clip_76/end_frame=0 -animation/clip_76/loops=false -animation/clip_77/name="" -animation/clip_77/start_frame=0 -animation/clip_77/end_frame=0 -animation/clip_77/loops=false -animation/clip_78/name="" -animation/clip_78/start_frame=0 -animation/clip_78/end_frame=0 -animation/clip_78/loops=false -animation/clip_79/name="" -animation/clip_79/start_frame=0 -animation/clip_79/end_frame=0 -animation/clip_79/loops=false -animation/clip_80/name="" -animation/clip_80/start_frame=0 -animation/clip_80/end_frame=0 -animation/clip_80/loops=false -animation/clip_81/name="" -animation/clip_81/start_frame=0 -animation/clip_81/end_frame=0 -animation/clip_81/loops=false -animation/clip_82/name="" -animation/clip_82/start_frame=0 -animation/clip_82/end_frame=0 -animation/clip_82/loops=false -animation/clip_83/name="" -animation/clip_83/start_frame=0 -animation/clip_83/end_frame=0 -animation/clip_83/loops=false -animation/clip_84/name="" -animation/clip_84/start_frame=0 -animation/clip_84/end_frame=0 -animation/clip_84/loops=false -animation/clip_85/name="" -animation/clip_85/start_frame=0 -animation/clip_85/end_frame=0 -animation/clip_85/loops=false -animation/clip_86/name="" -animation/clip_86/start_frame=0 -animation/clip_86/end_frame=0 -animation/clip_86/loops=false -animation/clip_87/name="" -animation/clip_87/start_frame=0 -animation/clip_87/end_frame=0 -animation/clip_87/loops=false -animation/clip_88/name="" -animation/clip_88/start_frame=0 -animation/clip_88/end_frame=0 -animation/clip_88/loops=false -animation/clip_89/name="" -animation/clip_89/start_frame=0 -animation/clip_89/end_frame=0 -animation/clip_89/loops=false -animation/clip_90/name="" -animation/clip_90/start_frame=0 -animation/clip_90/end_frame=0 -animation/clip_90/loops=false -animation/clip_91/name="" -animation/clip_91/start_frame=0 -animation/clip_91/end_frame=0 -animation/clip_91/loops=false -animation/clip_92/name="" -animation/clip_92/start_frame=0 -animation/clip_92/end_frame=0 -animation/clip_92/loops=false -animation/clip_93/name="" -animation/clip_93/start_frame=0 -animation/clip_93/end_frame=0 -animation/clip_93/loops=false -animation/clip_94/name="" -animation/clip_94/start_frame=0 -animation/clip_94/end_frame=0 -animation/clip_94/loops=false -animation/clip_95/name="" -animation/clip_95/start_frame=0 -animation/clip_95/end_frame=0 -animation/clip_95/loops=false -animation/clip_96/name="" -animation/clip_96/start_frame=0 -animation/clip_96/end_frame=0 -animation/clip_96/loops=false -animation/clip_97/name="" -animation/clip_97/start_frame=0 -animation/clip_97/end_frame=0 -animation/clip_97/loops=false -animation/clip_98/name="" -animation/clip_98/start_frame=0 -animation/clip_98/end_frame=0 -animation/clip_98/loops=false -animation/clip_99/name="" -animation/clip_99/start_frame=0 -animation/clip_99/end_frame=0 -animation/clip_99/loops=false -animation/clip_100/name="" -animation/clip_100/start_frame=0 -animation/clip_100/end_frame=0 -animation/clip_100/loops=false -animation/clip_101/name="" -animation/clip_101/start_frame=0 -animation/clip_101/end_frame=0 -animation/clip_101/loops=false -animation/clip_102/name="" -animation/clip_102/start_frame=0 -animation/clip_102/end_frame=0 -animation/clip_102/loops=false -animation/clip_103/name="" -animation/clip_103/start_frame=0 -animation/clip_103/end_frame=0 -animation/clip_103/loops=false -animation/clip_104/name="" -animation/clip_104/start_frame=0 -animation/clip_104/end_frame=0 -animation/clip_104/loops=false -animation/clip_105/name="" -animation/clip_105/start_frame=0 -animation/clip_105/end_frame=0 -animation/clip_105/loops=false -animation/clip_106/name="" -animation/clip_106/start_frame=0 -animation/clip_106/end_frame=0 -animation/clip_106/loops=false -animation/clip_107/name="" -animation/clip_107/start_frame=0 -animation/clip_107/end_frame=0 -animation/clip_107/loops=false -animation/clip_108/name="" -animation/clip_108/start_frame=0 -animation/clip_108/end_frame=0 -animation/clip_108/loops=false -animation/clip_109/name="" -animation/clip_109/start_frame=0 -animation/clip_109/end_frame=0 -animation/clip_109/loops=false -animation/clip_110/name="" -animation/clip_110/start_frame=0 -animation/clip_110/end_frame=0 -animation/clip_110/loops=false -animation/clip_111/name="" -animation/clip_111/start_frame=0 -animation/clip_111/end_frame=0 -animation/clip_111/loops=false -animation/clip_112/name="" -animation/clip_112/start_frame=0 -animation/clip_112/end_frame=0 -animation/clip_112/loops=false -animation/clip_113/name="" -animation/clip_113/start_frame=0 -animation/clip_113/end_frame=0 -animation/clip_113/loops=false -animation/clip_114/name="" -animation/clip_114/start_frame=0 -animation/clip_114/end_frame=0 -animation/clip_114/loops=false -animation/clip_115/name="" -animation/clip_115/start_frame=0 -animation/clip_115/end_frame=0 -animation/clip_115/loops=false -animation/clip_116/name="" -animation/clip_116/start_frame=0 -animation/clip_116/end_frame=0 -animation/clip_116/loops=false -animation/clip_117/name="" -animation/clip_117/start_frame=0 -animation/clip_117/end_frame=0 -animation/clip_117/loops=false -animation/clip_118/name="" -animation/clip_118/start_frame=0 -animation/clip_118/end_frame=0 -animation/clip_118/loops=false -animation/clip_119/name="" -animation/clip_119/start_frame=0 -animation/clip_119/end_frame=0 -animation/clip_119/loops=false -animation/clip_120/name="" -animation/clip_120/start_frame=0 -animation/clip_120/end_frame=0 -animation/clip_120/loops=false -animation/clip_121/name="" -animation/clip_121/start_frame=0 -animation/clip_121/end_frame=0 -animation/clip_121/loops=false -animation/clip_122/name="" -animation/clip_122/start_frame=0 -animation/clip_122/end_frame=0 -animation/clip_122/loops=false -animation/clip_123/name="" -animation/clip_123/start_frame=0 -animation/clip_123/end_frame=0 -animation/clip_123/loops=false -animation/clip_124/name="" -animation/clip_124/start_frame=0 -animation/clip_124/end_frame=0 -animation/clip_124/loops=false -animation/clip_125/name="" -animation/clip_125/start_frame=0 -animation/clip_125/end_frame=0 -animation/clip_125/loops=false -animation/clip_126/name="" -animation/clip_126/start_frame=0 -animation/clip_126/end_frame=0 -animation/clip_126/loops=false -animation/clip_127/name="" -animation/clip_127/start_frame=0 -animation/clip_127/end_frame=0 -animation/clip_127/loops=false -animation/clip_128/name="" -animation/clip_128/start_frame=0 -animation/clip_128/end_frame=0 -animation/clip_128/loops=false -animation/clip_129/name="" -animation/clip_129/start_frame=0 -animation/clip_129/end_frame=0 -animation/clip_129/loops=false -animation/clip_130/name="" -animation/clip_130/start_frame=0 -animation/clip_130/end_frame=0 -animation/clip_130/loops=false -animation/clip_131/name="" -animation/clip_131/start_frame=0 -animation/clip_131/end_frame=0 -animation/clip_131/loops=false -animation/clip_132/name="" -animation/clip_132/start_frame=0 -animation/clip_132/end_frame=0 -animation/clip_132/loops=false -animation/clip_133/name="" -animation/clip_133/start_frame=0 -animation/clip_133/end_frame=0 -animation/clip_133/loops=false -animation/clip_134/name="" -animation/clip_134/start_frame=0 -animation/clip_134/end_frame=0 -animation/clip_134/loops=false -animation/clip_135/name="" -animation/clip_135/start_frame=0 -animation/clip_135/end_frame=0 -animation/clip_135/loops=false -animation/clip_136/name="" -animation/clip_136/start_frame=0 -animation/clip_136/end_frame=0 -animation/clip_136/loops=false -animation/clip_137/name="" -animation/clip_137/start_frame=0 -animation/clip_137/end_frame=0 -animation/clip_137/loops=false -animation/clip_138/name="" -animation/clip_138/start_frame=0 -animation/clip_138/end_frame=0 -animation/clip_138/loops=false -animation/clip_139/name="" -animation/clip_139/start_frame=0 -animation/clip_139/end_frame=0 -animation/clip_139/loops=false -animation/clip_140/name="" -animation/clip_140/start_frame=0 -animation/clip_140/end_frame=0 -animation/clip_140/loops=false -animation/clip_141/name="" -animation/clip_141/start_frame=0 -animation/clip_141/end_frame=0 -animation/clip_141/loops=false -animation/clip_142/name="" -animation/clip_142/start_frame=0 -animation/clip_142/end_frame=0 -animation/clip_142/loops=false -animation/clip_143/name="" -animation/clip_143/start_frame=0 -animation/clip_143/end_frame=0 -animation/clip_143/loops=false -animation/clip_144/name="" -animation/clip_144/start_frame=0 -animation/clip_144/end_frame=0 -animation/clip_144/loops=false -animation/clip_145/name="" -animation/clip_145/start_frame=0 -animation/clip_145/end_frame=0 -animation/clip_145/loops=false -animation/clip_146/name="" -animation/clip_146/start_frame=0 -animation/clip_146/end_frame=0 -animation/clip_146/loops=false -animation/clip_147/name="" -animation/clip_147/start_frame=0 -animation/clip_147/end_frame=0 -animation/clip_147/loops=false -animation/clip_148/name="" -animation/clip_148/start_frame=0 -animation/clip_148/end_frame=0 -animation/clip_148/loops=false -animation/clip_149/name="" -animation/clip_149/start_frame=0 -animation/clip_149/end_frame=0 -animation/clip_149/loops=false -animation/clip_150/name="" -animation/clip_150/start_frame=0 -animation/clip_150/end_frame=0 -animation/clip_150/loops=false -animation/clip_151/name="" -animation/clip_151/start_frame=0 -animation/clip_151/end_frame=0 -animation/clip_151/loops=false -animation/clip_152/name="" -animation/clip_152/start_frame=0 -animation/clip_152/end_frame=0 -animation/clip_152/loops=false -animation/clip_153/name="" -animation/clip_153/start_frame=0 -animation/clip_153/end_frame=0 -animation/clip_153/loops=false -animation/clip_154/name="" -animation/clip_154/start_frame=0 -animation/clip_154/end_frame=0 -animation/clip_154/loops=false -animation/clip_155/name="" -animation/clip_155/start_frame=0 -animation/clip_155/end_frame=0 -animation/clip_155/loops=false -animation/clip_156/name="" -animation/clip_156/start_frame=0 -animation/clip_156/end_frame=0 -animation/clip_156/loops=false -animation/clip_157/name="" -animation/clip_157/start_frame=0 -animation/clip_157/end_frame=0 -animation/clip_157/loops=false -animation/clip_158/name="" -animation/clip_158/start_frame=0 -animation/clip_158/end_frame=0 -animation/clip_158/loops=false -animation/clip_159/name="" -animation/clip_159/start_frame=0 -animation/clip_159/end_frame=0 -animation/clip_159/loops=false -animation/clip_160/name="" -animation/clip_160/start_frame=0 -animation/clip_160/end_frame=0 -animation/clip_160/loops=false -animation/clip_161/name="" -animation/clip_161/start_frame=0 -animation/clip_161/end_frame=0 -animation/clip_161/loops=false -animation/clip_162/name="" -animation/clip_162/start_frame=0 -animation/clip_162/end_frame=0 -animation/clip_162/loops=false -animation/clip_163/name="" -animation/clip_163/start_frame=0 -animation/clip_163/end_frame=0 -animation/clip_163/loops=false -animation/clip_164/name="" -animation/clip_164/start_frame=0 -animation/clip_164/end_frame=0 -animation/clip_164/loops=false -animation/clip_165/name="" -animation/clip_165/start_frame=0 -animation/clip_165/end_frame=0 -animation/clip_165/loops=false -animation/clip_166/name="" -animation/clip_166/start_frame=0 -animation/clip_166/end_frame=0 -animation/clip_166/loops=false -animation/clip_167/name="" -animation/clip_167/start_frame=0 -animation/clip_167/end_frame=0 -animation/clip_167/loops=false -animation/clip_168/name="" -animation/clip_168/start_frame=0 -animation/clip_168/end_frame=0 -animation/clip_168/loops=false -animation/clip_169/name="" -animation/clip_169/start_frame=0 -animation/clip_169/end_frame=0 -animation/clip_169/loops=false -animation/clip_170/name="" -animation/clip_170/start_frame=0 -animation/clip_170/end_frame=0 -animation/clip_170/loops=false -animation/clip_171/name="" -animation/clip_171/start_frame=0 -animation/clip_171/end_frame=0 -animation/clip_171/loops=false -animation/clip_172/name="" -animation/clip_172/start_frame=0 -animation/clip_172/end_frame=0 -animation/clip_172/loops=false -animation/clip_173/name="" -animation/clip_173/start_frame=0 -animation/clip_173/end_frame=0 -animation/clip_173/loops=false -animation/clip_174/name="" -animation/clip_174/start_frame=0 -animation/clip_174/end_frame=0 -animation/clip_174/loops=false -animation/clip_175/name="" -animation/clip_175/start_frame=0 -animation/clip_175/end_frame=0 -animation/clip_175/loops=false -animation/clip_176/name="" -animation/clip_176/start_frame=0 -animation/clip_176/end_frame=0 -animation/clip_176/loops=false -animation/clip_177/name="" -animation/clip_177/start_frame=0 -animation/clip_177/end_frame=0 -animation/clip_177/loops=false -animation/clip_178/name="" -animation/clip_178/start_frame=0 -animation/clip_178/end_frame=0 -animation/clip_178/loops=false -animation/clip_179/name="" -animation/clip_179/start_frame=0 -animation/clip_179/end_frame=0 -animation/clip_179/loops=false -animation/clip_180/name="" -animation/clip_180/start_frame=0 -animation/clip_180/end_frame=0 -animation/clip_180/loops=false -animation/clip_181/name="" -animation/clip_181/start_frame=0 -animation/clip_181/end_frame=0 -animation/clip_181/loops=false -animation/clip_182/name="" -animation/clip_182/start_frame=0 -animation/clip_182/end_frame=0 -animation/clip_182/loops=false -animation/clip_183/name="" -animation/clip_183/start_frame=0 -animation/clip_183/end_frame=0 -animation/clip_183/loops=false -animation/clip_184/name="" -animation/clip_184/start_frame=0 -animation/clip_184/end_frame=0 -animation/clip_184/loops=false -animation/clip_185/name="" -animation/clip_185/start_frame=0 -animation/clip_185/end_frame=0 -animation/clip_185/loops=false -animation/clip_186/name="" -animation/clip_186/start_frame=0 -animation/clip_186/end_frame=0 -animation/clip_186/loops=false -animation/clip_187/name="" -animation/clip_187/start_frame=0 -animation/clip_187/end_frame=0 -animation/clip_187/loops=false -animation/clip_188/name="" -animation/clip_188/start_frame=0 -animation/clip_188/end_frame=0 -animation/clip_188/loops=false -animation/clip_189/name="" -animation/clip_189/start_frame=0 -animation/clip_189/end_frame=0 -animation/clip_189/loops=false -animation/clip_190/name="" -animation/clip_190/start_frame=0 -animation/clip_190/end_frame=0 -animation/clip_190/loops=false -animation/clip_191/name="" -animation/clip_191/start_frame=0 -animation/clip_191/end_frame=0 -animation/clip_191/loops=false -animation/clip_192/name="" -animation/clip_192/start_frame=0 -animation/clip_192/end_frame=0 -animation/clip_192/loops=false -animation/clip_193/name="" -animation/clip_193/start_frame=0 -animation/clip_193/end_frame=0 -animation/clip_193/loops=false -animation/clip_194/name="" -animation/clip_194/start_frame=0 -animation/clip_194/end_frame=0 -animation/clip_194/loops=false -animation/clip_195/name="" -animation/clip_195/start_frame=0 -animation/clip_195/end_frame=0 -animation/clip_195/loops=false -animation/clip_196/name="" -animation/clip_196/start_frame=0 -animation/clip_196/end_frame=0 -animation/clip_196/loops=false -animation/clip_197/name="" -animation/clip_197/start_frame=0 -animation/clip_197/end_frame=0 -animation/clip_197/loops=false -animation/clip_198/name="" -animation/clip_198/start_frame=0 -animation/clip_198/end_frame=0 -animation/clip_198/loops=false -animation/clip_199/name="" -animation/clip_199/start_frame=0 -animation/clip_199/end_frame=0 -animation/clip_199/loops=false -animation/clip_200/name="" -animation/clip_200/start_frame=0 -animation/clip_200/end_frame=0 -animation/clip_200/loops=false -animation/clip_201/name="" -animation/clip_201/start_frame=0 -animation/clip_201/end_frame=0 -animation/clip_201/loops=false -animation/clip_202/name="" -animation/clip_202/start_frame=0 -animation/clip_202/end_frame=0 -animation/clip_202/loops=false -animation/clip_203/name="" -animation/clip_203/start_frame=0 -animation/clip_203/end_frame=0 -animation/clip_203/loops=false -animation/clip_204/name="" -animation/clip_204/start_frame=0 -animation/clip_204/end_frame=0 -animation/clip_204/loops=false -animation/clip_205/name="" -animation/clip_205/start_frame=0 -animation/clip_205/end_frame=0 -animation/clip_205/loops=false -animation/clip_206/name="" -animation/clip_206/start_frame=0 -animation/clip_206/end_frame=0 -animation/clip_206/loops=false -animation/clip_207/name="" -animation/clip_207/start_frame=0 -animation/clip_207/end_frame=0 -animation/clip_207/loops=false -animation/clip_208/name="" -animation/clip_208/start_frame=0 -animation/clip_208/end_frame=0 -animation/clip_208/loops=false -animation/clip_209/name="" -animation/clip_209/start_frame=0 -animation/clip_209/end_frame=0 -animation/clip_209/loops=false -animation/clip_210/name="" -animation/clip_210/start_frame=0 -animation/clip_210/end_frame=0 -animation/clip_210/loops=false -animation/clip_211/name="" -animation/clip_211/start_frame=0 -animation/clip_211/end_frame=0 -animation/clip_211/loops=false -animation/clip_212/name="" -animation/clip_212/start_frame=0 -animation/clip_212/end_frame=0 -animation/clip_212/loops=false -animation/clip_213/name="" -animation/clip_213/start_frame=0 -animation/clip_213/end_frame=0 -animation/clip_213/loops=false -animation/clip_214/name="" -animation/clip_214/start_frame=0 -animation/clip_214/end_frame=0 -animation/clip_214/loops=false -animation/clip_215/name="" -animation/clip_215/start_frame=0 -animation/clip_215/end_frame=0 -animation/clip_215/loops=false -animation/clip_216/name="" -animation/clip_216/start_frame=0 -animation/clip_216/end_frame=0 -animation/clip_216/loops=false -animation/clip_217/name="" -animation/clip_217/start_frame=0 -animation/clip_217/end_frame=0 -animation/clip_217/loops=false -animation/clip_218/name="" -animation/clip_218/start_frame=0 -animation/clip_218/end_frame=0 -animation/clip_218/loops=false -animation/clip_219/name="" -animation/clip_219/start_frame=0 -animation/clip_219/end_frame=0 -animation/clip_219/loops=false -animation/clip_220/name="" -animation/clip_220/start_frame=0 -animation/clip_220/end_frame=0 -animation/clip_220/loops=false -animation/clip_221/name="" -animation/clip_221/start_frame=0 -animation/clip_221/end_frame=0 -animation/clip_221/loops=false -animation/clip_222/name="" -animation/clip_222/start_frame=0 -animation/clip_222/end_frame=0 -animation/clip_222/loops=false -animation/clip_223/name="" -animation/clip_223/start_frame=0 -animation/clip_223/end_frame=0 -animation/clip_223/loops=false -animation/clip_224/name="" -animation/clip_224/start_frame=0 -animation/clip_224/end_frame=0 -animation/clip_224/loops=false -animation/clip_225/name="" -animation/clip_225/start_frame=0 -animation/clip_225/end_frame=0 -animation/clip_225/loops=false -animation/clip_226/name="" -animation/clip_226/start_frame=0 -animation/clip_226/end_frame=0 -animation/clip_226/loops=false -animation/clip_227/name="" -animation/clip_227/start_frame=0 -animation/clip_227/end_frame=0 -animation/clip_227/loops=false -animation/clip_228/name="" -animation/clip_228/start_frame=0 -animation/clip_228/end_frame=0 -animation/clip_228/loops=false -animation/clip_229/name="" -animation/clip_229/start_frame=0 -animation/clip_229/end_frame=0 -animation/clip_229/loops=false -animation/clip_230/name="" -animation/clip_230/start_frame=0 -animation/clip_230/end_frame=0 -animation/clip_230/loops=false -animation/clip_231/name="" -animation/clip_231/start_frame=0 -animation/clip_231/end_frame=0 -animation/clip_231/loops=false -animation/clip_232/name="" -animation/clip_232/start_frame=0 -animation/clip_232/end_frame=0 -animation/clip_232/loops=false -animation/clip_233/name="" -animation/clip_233/start_frame=0 -animation/clip_233/end_frame=0 -animation/clip_233/loops=false -animation/clip_234/name="" -animation/clip_234/start_frame=0 -animation/clip_234/end_frame=0 -animation/clip_234/loops=false -animation/clip_235/name="" -animation/clip_235/start_frame=0 -animation/clip_235/end_frame=0 -animation/clip_235/loops=false -animation/clip_236/name="" -animation/clip_236/start_frame=0 -animation/clip_236/end_frame=0 -animation/clip_236/loops=false -animation/clip_237/name="" -animation/clip_237/start_frame=0 -animation/clip_237/end_frame=0 -animation/clip_237/loops=false -animation/clip_238/name="" -animation/clip_238/start_frame=0 -animation/clip_238/end_frame=0 -animation/clip_238/loops=false -animation/clip_239/name="" -animation/clip_239/start_frame=0 -animation/clip_239/end_frame=0 -animation/clip_239/loops=false -animation/clip_240/name="" -animation/clip_240/start_frame=0 -animation/clip_240/end_frame=0 -animation/clip_240/loops=false -animation/clip_241/name="" -animation/clip_241/start_frame=0 -animation/clip_241/end_frame=0 -animation/clip_241/loops=false -animation/clip_242/name="" -animation/clip_242/start_frame=0 -animation/clip_242/end_frame=0 -animation/clip_242/loops=false -animation/clip_243/name="" -animation/clip_243/start_frame=0 -animation/clip_243/end_frame=0 -animation/clip_243/loops=false -animation/clip_244/name="" -animation/clip_244/start_frame=0 -animation/clip_244/end_frame=0 -animation/clip_244/loops=false -animation/clip_245/name="" -animation/clip_245/start_frame=0 -animation/clip_245/end_frame=0 -animation/clip_245/loops=false -animation/clip_246/name="" -animation/clip_246/start_frame=0 -animation/clip_246/end_frame=0 -animation/clip_246/loops=false -animation/clip_247/name="" -animation/clip_247/start_frame=0 -animation/clip_247/end_frame=0 -animation/clip_247/loops=false -animation/clip_248/name="" -animation/clip_248/start_frame=0 -animation/clip_248/end_frame=0 -animation/clip_248/loops=false -animation/clip_249/name="" -animation/clip_249/start_frame=0 -animation/clip_249/end_frame=0 -animation/clip_249/loops=false -animation/clip_250/name="" -animation/clip_250/start_frame=0 -animation/clip_250/end_frame=0 -animation/clip_250/loops=false -animation/clip_251/name="" -animation/clip_251/start_frame=0 -animation/clip_251/end_frame=0 -animation/clip_251/loops=false -animation/clip_252/name="" -animation/clip_252/start_frame=0 -animation/clip_252/end_frame=0 -animation/clip_252/loops=false -animation/clip_253/name="" -animation/clip_253/start_frame=0 -animation/clip_253/end_frame=0 -animation/clip_253/loops=false -animation/clip_254/name="" -animation/clip_254/start_frame=0 -animation/clip_254/end_frame=0 -animation/clip_254/loops=false -animation/clip_255/name="" -animation/clip_255/start_frame=0 -animation/clip_255/end_frame=0 -animation/clip_255/loops=false -animation/clip_256/name="" -animation/clip_256/start_frame=0 -animation/clip_256/end_frame=0 -animation/clip_256/loops=false diff --git a/incubator.tscn b/incubator.tscn index 035ec41..c46ac38 100644 --- a/incubator.tscn +++ b/incubator.tscn @@ -1,12 +1,21 @@ -[gd_scene load_steps=3 format=2] +[gd_scene load_steps=6 format=2] -[ext_resource path="res://incubator.dae" type="PackedScene" id=1] +[ext_resource path="res://mesh/incubator.dae" type="PackedScene" id=1] +[ext_resource path="res://scripts/incubator.gd" type="Script" id=2] + +[sub_resource type="ConvexPolygonShape" id=2] + +points = PoolVector3Array( 1, -1, 1, -0.999512, -1, -1, 1, -1, -0.999512, -0.999512, 1, -1, 0.999512, 1, 1, 1, 1, -0.999512, 1, 1, -0.999512, 1, -1, 1, 1, -1, -0.999512, 0.999512, 1, 1, -1, -1, 0.999512, 1, -1, 1, -1, -1, 0.999512, -0.999512, 1, -1, -0.999512, -1, -1, 1, -1, -0.999512, -0.999512, 1, -1, 1, 1, -0.999512, -1, -1, 0.999512, -1, 1, 0.999512, 0.999512, 1, 1, -1, 1, 0.999512, -1, 1, 0.999512, -0.999512, -1, -1 ) + +[sub_resource type="ConvexPolygonShape" id=3] + +points = PoolVector3Array( -1, 1, 2.81836, -1, -1, -1, -1, -1, 2.81836, -1, 1, -1, 1, -1, -1, -1, -1, -1, 1, 1, -1, 1, -1, 2.81836, 1, -1, -1, 1, 1, 2.81836, -1, -1, 2.81836, 1, -1, 2.81836, 1, -1, -1, -1, -1, 2.81836, -1, -1, -1, -1, 1, -1, 1, 1, 2.81836, 1, 1, -1, -1, 1, -1, 1, 1, -1, 1, 1, 2.81836, -1, 1, 2.81836, 1, -1, 2.81836, -1, 1, 2.81836 ) [sub_resource type="SpatialMaterial" id=1] resource_name = "glass" flags_transparent = true -flags_unshaded = true +flags_unshaded = false flags_on_top = false flags_use_point_size = false flags_fixed_size = false @@ -19,9 +28,9 @@ params_depth_draw_mode = 0 params_line_width = 1.0 params_point_size = 1.0 params_billboard_mode = 0 -albedo_color = Color( 0.1, 0.1, 0.1, 1 ) +albedo_color = Color( 0.491638, 0.509477, 0.699219, 0.294706 ) specular_mode = 1 -specular_color = Color( 0.1, 0.1, 0.1, 1 ) +specular_color = Color( 0.491638, 0.509477, 0.699219, 1 ) specular_metalness = 0.1 specular_roughness = 0.0 emission_enabled = false @@ -39,10 +48,96 @@ uv1_offset = Vector2( 0, 0 ) uv2_scale = Vector2( 1, 1 ) uv2_offset = Vector2( 0, 0 ) -[node name="Scene Root" instance=ExtResource( 1 )] +[node name="Incubator" instance=ExtResource( 1 )] + +script = ExtResource( 2 ) + +[node name="StaticBody" type="StaticBody" parent="Cube"] + +input_ray_pickable = true +input_capture_on_drag = false +shape_count = 1 +shapes/0/shape = SubResource( 2 ) +shapes/0/transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 ) +shapes/0/trigger = true +collision_layer = 1 +collision_mask = 1 +friction = 1.0 +bounce = 0.0 +constant_linear_velocity = Vector3( 0, 0, 0 ) +constant_angular_velocity = Vector3( 0, 0, 0 ) + +[node name="CollisionShape" type="CollisionShape" parent="Cube/StaticBody"] + +shape = SubResource( 2 ) +trigger = true +_update_shape_index = 0 + +[node name="StaticBody" type="StaticBody" parent="Cube.1"] + +input_ray_pickable = true +input_capture_on_drag = false +shape_count = 1 +shapes/0/shape = SubResource( 3 ) +shapes/0/transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 ) +shapes/0/trigger = true +collision_layer = 1 +collision_mask = 1 +friction = 1.0 +bounce = 0.0 +constant_linear_velocity = Vector3( 0, 0, 0 ) +constant_angular_velocity = Vector3( 0, 0, 0 ) + +[node name="CollisionShape" type="CollisionShape" parent="Cube.1/StaticBody"] + +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0 ) +shape = SubResource( 3 ) +trigger = true +_update_shape_index = 0 [node name="cover" parent="."] material_override = SubResource( 1 ) +material/0 = null + +[node name="spawns" type="Spatial" parent="."] + +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0.1, 0 ) + +[node name="0-1" type="Position3D" parent="spawns"] + +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0511715, 1.64196, 1.41775 ) + +[node name="1-1" type="Position3D" parent="spawns"] + +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0511715, 1.64196, 0.631948 ) + +[node name="2-1" type="Position3D" parent="spawns"] + +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0511715, 1.64196, -0.150503 ) + +[node name="3-1" type="Position3D" parent="spawns"] + +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0.0511715, 1.64196, -0.97198 ) + +[node name="0-0" type="Position3D" parent="spawns"] + +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -0.732647, 1.64196, 1.41775 ) + +[node name="1-0" type="Position3D" parent="spawns"] + +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -0.732647, 1.64196, 0.631948 ) + +[node name="2-0" type="Position3D" parent="spawns"] + +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -0.732647, 1.64196, -0.150503 ) + +[node name="3-0" type="Position3D" parent="spawns"] + +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, -0.732647, 1.64196, -0.97198 ) + +[connection signal="input_event" from="Cube/StaticBody" to="." method="_on_body_input_event"] + +[connection signal="input_event" from="Cube.1/StaticBody" to="." method="_on_panel_input_event"] diff --git a/ld38.godot b/ld38.godot index e1b5588..93eb744 100644 --- a/ld38.godot +++ b/ld38.godot @@ -1,6 +1,4 @@ config_version=3 -config_version=null - [application] name="ld38" @@ -14,3 +12,4 @@ multithread/thread_rid_pool_prealloc=60 [rendering] viewport/default_clear_color=Color( 0, 0, 0, 1 ) +quality/msaa=1 diff --git a/mesh/cube.dae.import b/mesh/cube.dae.import index f0a3eea..9245541 100644 --- a/mesh/cube.dae.import +++ b/mesh/cube.dae.import @@ -6,7 +6,7 @@ path="res://.import/cube.dae-8dcb9af004f5b3c1e6a0f8dcbd4194bf.scn" [params] -nodes/root_type="Spatial" +nodes/root_type="StaticBody" nodes/root_name="Scene Root" nodes/custom_script="" materials/location=0 diff --git a/scripts/base.gd b/scripts/base.gd new file mode 100644 index 0000000..fb3dae7 --- /dev/null +++ b/scripts/base.gd @@ -0,0 +1,33 @@ +extends Node + +var Game = preload("res://base.tscn") +var Wrld = preload("res://world.tscn") +var Incubator = preload("res://incubator.tscn") + +func _ready(): + pass + +func _process(delta): + pass + +func _input(event): + if event.type == InputEvent.MOUSE_BUTTON: + if event.button_index == BUTTON_WHEEL_DOWN: + get_node("Camera").translate(Vector3(0,0,0.1)) + elif event.button_index == BUTTON_WHEEL_UP: + get_node("Camera").translate(Vector3(0,0,-0.1)) + if event.type == InputEvent.MOUSE_MOTION and event.button_mask == BUTTON_MASK_MIDDLE: + get_node("Camera").rot_around(event.relative_x/(30)) + if event.type == InputEvent.KEY: + if event.scancode == KEY_A: + get_node("Camera").translate(Vector3(-0.1,0,0)) + if event.scancode == KEY_D: + get_node("Camera").translate(Vector3(0.1,0,0)) + if event.scancode == KEY_S: + get_node("Camera").translate(Vector3(0,-0.1,0)) + if event.scancode == KEY_W: + get_node("Camera").translate(Vector3(0,0.1,0)) + if event.scancode == KEY_H: + var s = get_node("Camera").get_selected() + if s != null: + get_node("Incubator").push_world(s) \ No newline at end of file diff --git a/scripts/camera.gd b/scripts/camera.gd new file mode 100644 index 0000000..e29ad51 --- /dev/null +++ b/scripts/camera.gd @@ -0,0 +1,26 @@ +extends Camera + +var selected = null + +func _ready(): + pass + +func select(what): + if self.selected != what: + set_translation(what.translation + Vector3(1,3,0)) + look_at(what.translation, Vector3(0,1,0)) + self.selected = what + +func reselect(): + if self.selected != null: + look_at(self.selected.translation, Vector3(0,1,0)) + +func rot_around(amount): + if self.selected != null: + var relative = self.translation - self.selected.translation + var rotated = relative.rotated(Vector3(0,1,0), amount) + set_translation(self.selected.translation + rotated) + reselect() + +func get_selected(): + return self.selected \ No newline at end of file diff --git a/scripts/cube.gd b/scripts/cube.gd new file mode 100644 index 0000000..edfe54c --- /dev/null +++ b/scripts/cube.gd @@ -0,0 +1,21 @@ +extends StaticBody + +var cube = null +var selected = false +var mat = SpatialMaterial.new() + +signal on_click + +func _ready(): + self.cube = get_child(0) + self.cube.material_override = self.mat + connect("on_click", get_parent(), "_on_click") + +func _input_event(camera, event, click_pos, click_normal, shape_idx): + if event.type == InputEvent.MOUSE_BUTTON and event.button_index == BUTTON_LEFT and event.is_pressed(): + if self.selected: + self.mat.set_albedo(Color(0.5,0.3,0.3)) + else: + self.mat.set_albedo(Color(0.3,0.5,0.3)) + self.selected = !self.selected + emit_signal("on_click") diff --git a/scripts/house.gd b/scripts/house.gd new file mode 100644 index 0000000..b783da1 --- /dev/null +++ b/scripts/house.gd @@ -0,0 +1,4 @@ +extends Spatial + +func _ready(): + pass diff --git a/scripts/incubator.gd b/scripts/incubator.gd new file mode 100644 index 0000000..11f8d5b --- /dev/null +++ b/scripts/incubator.gd @@ -0,0 +1,38 @@ +extends Spatial + +var worlds = [] + +func _enter_tree(): + for x in range(4): + var line = [] + self.worlds.append(line) + for y in range(2): + line.append(null) + +func set_world(x, y, world): + self.worlds[x][y] = world + var pos = get_node("spawns/" + str(x) + "-" + str(y)) + world.set_translation(pos.global_transform.origin) + +func push_world(world): + print("pushing") + for x in range(4): + for y in range(2): + print("h") + if self.worlds[x][y] == null: + print("set") + set_world(x, y, world) + return + +func get_world(x, y): + return self.worlds[x][y] + +func _on_body_input_event( camera, event, click_pos, click_normal, shape_idx ): + if event.type == InputEvent.MOUSE_BUTTON and event.button_index == BUTTON_LEFT: + print("body") + var cam = get_tree().get_root().get_camera() + cam.select(self) + +func _on_panel_input_event( camera, event, click_pos, click_normal, shape_idx ): + if event.type == InputEvent.MOUSE_BUTTON and event.button_index == BUTTON_LEFT: + print("panel") diff --git a/scripts/world.gd b/scripts/world.gd new file mode 100644 index 0000000..572a658 --- /dev/null +++ b/scripts/world.gd @@ -0,0 +1,45 @@ +extends Spatial + +const SIZE = 15 + +var Cube = preload("res://cube.tscn") +var House = preload("res://house.tscn") +var Pine = preload("res://tree_pine.tscn") +var Oak = preload("res://tree_oak.tscn") +var cubes = Array() + +func _enter_tree(): + var pn = Pine.instance() + pn.translate(Vector3(2,1,2)) + add_child(pn) + var ok = Oak.instance() + ok.translate(Vector3(-2,1,2)) + add_child(ok) + var hs = House.instance() + hs.translate(Vector3(0,1,2)) + hs.rotate_y(PI/2) + add_child(hs) + _make_ball(SIZE, Vector3(0,0,0)) + +func _make_ball(size, center): + var blocks = Array() + for x in range(-size, size): + var line_x = Array() + blocks.append(line_x) + for y in range(0, -size, -1): + var line_y = Array() + line_x.append(line_y) + for z in range(-size, size): + var relative = Vector3(x, y, z) + if floor(relative.length()) <= size/2: + var cube = Cube.instance() + cube.translate(relative + center) + cube.set_scale(Vector3(0.5, 0.5, 0.5)) + add_child(cube) + line_y.append(cube) + else: + line_y.append(null) + +func _on_click(): + var cam = get_tree().get_root().get_camera() + cam.select(self) \ No newline at end of file diff --git a/world.gd b/world.gd deleted file mode 100644 index 7636b7c..0000000 --- a/world.gd +++ /dev/null @@ -1,39 +0,0 @@ -extends Spatial - -var Cube = preload("res://mesh/cube.dae") -var House = preload("res://house.tscn") -var Pine = preload("res://tree_pine.tscn") -var Oak = preload("res://tree_oak.tscn") -var cubes = Array() - -func _enter_tree(): - var offsets = [5, 3, 2, 1, 1, 0, 0, 0, 1, 1, 2, 3, 5] - var hs = House.instance() - var glass = load("res://incubator.tscn::1") - hs.get_child(0).set_material_override(glass) - add_child(hs) - var pn = Pine.instance() - pn.translate(Vector3(2,2,0)) - add_child(pn) - var ok = Oak.instance() - ok.translate(Vector3(-2,-2,0)) - add_child(ok) - make_ball(13, Vector3(20,26,0)) - -func make_ball(size, center): - var blocks = Array() - for x in range(-size, size): - var line_x = Array() - blocks.append(line_x) - for y in range(0, -size, -1): - var line_y = Array() - line_x.append(line_y) - for z in range(-size, size): - var relative = Vector3(2*x, 2*y, 2*z) - if relative.length() <= size: - var cube = Cube.instance() - cube.translate(relative + center) - add_child(cube) - line_y.append(cube) - else: - line_y.append(null) \ No newline at end of file diff --git a/world.tscn b/world.tscn index 1ce4bf1..c468ed2 100644 --- a/world.tscn +++ b/world.tscn @@ -1,6 +1,6 @@ [gd_scene load_steps=2 format=2] -[ext_resource path="res://world.gd" type="Script" id=1] +[ext_resource path="res://scripts/world.gd" type="Script" id=1] [node name="World" type="Spatial"] @@ -8,22 +8,22 @@ script = ExtResource( 1 ) [node name="OmniLight" type="OmniLight" parent="."] -transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 2.06188, 2.015, 15.5061 ) +transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 20, 0 ) layers = 1 -light_color = Color( 0.847656, 0.838964, 0.291382, 1 ) +light_color = Color( 0.819993, 0.824219, 0.283325, 1 ) light_energy = 3.0 light_negative = false light_specular = 0.5 light_cull_mask = -1 shadow_enabled = true shadow_color = Color( 0, 0, 0, 1 ) -shadow_bias = 0.1 +shadow_bias = 5.0 shadow_contact = 0.0 -shadow_max_distance = 0.0 +shadow_max_distance = 45.0 editor_only = false -omni_range = 39.0 +omni_range = 45.0 omni_attenuation = 1.0 -omni_shadow_mode = 0 -omni_shadow_detail = 0 +omni_shadow_mode = 1 +omni_shadow_detail = 1 -- cgit v1.2.3-70-g09d2