├── README.md ├── blocks.png ├── license.png └── svg ├── colors ├── colors_black.svg ├── colors_blue.svg ├── colors_cyan.svg ├── colors_darkgray.svg ├── colors_gray.svg ├── colors_green.svg ├── colors_lightgray.svg ├── colors_magenta.svg ├── colors_make_color.svg ├── colors_orange.svg ├── colors_pink.svg ├── colors_red.svg ├── colors_split_color.svg ├── colors_white.svg └── colors_yellow.svg ├── control ├── control_break.svg ├── control_close_application.svg ├── control_close_screen.svg ├── control_close_screen_with_plain_text.svg ├── control_close_screen_with_value.svg ├── control_do_result.svg ├── control_evaluate_but_ignore_result.svg ├── control_for_each_item_in_list.svg ├── control_for_each_number_from.svg ├── control_get_plain_start_text.svg ├── control_get_start_value.svg ├── control_if_then.svg ├── control_if_then_else.svg ├── control_open_another_screen.svg ├── control_open_another_screen_with_start_value.svg └── control_while_test_do.svg ├── lists ├── list_add_items_to_list.svg ├── list_append_to_list.svg ├── list_copy_list.svg ├── list_create_empty_list.svg ├── list_index_in_list.svg ├── list_insert_list_item.svg ├── list_is_a_list.svg ├── list_is_in_list.svg ├── list_is_list_empty.svg ├── list_join_items_using_separator.svg ├── list_length_of_list.svg ├── list_list_from_csv_row.svg ├── list_list_from_csv_table.svg ├── list_list_to_csv_row.svg ├── list_list_to_csv_table.svg ├── list_lookup_in_pairs.svg ├── list_make_a_list.svg ├── list_pick_a_random_item.svg ├── list_remove_list_item.svg ├── list_replace_list_item.svg ├── list_reverse_list.svg └── list_select_list_item.svg ├── logic ├── logic_and.svg ├── logic_equal.svg ├── logic_false.svg ├── logic_not.svg ├── logic_not_equal.svg ├── logic_or.svg └── logic_true.svg ├── math ├── math_absolute.svg ├── math_acos.svg ├── math_add.svg ├── math_asin.svg ├── math_atan.svg ├── math_atan2.svg ├── math_bitwise_and.svg ├── math_bitwise_or.svg ├── math_bitwise_xor.svg ├── math_ceiling.svg ├── math_convert_degrees_to_radians.svg ├── math_convert_number_base10_to_binary.svg ├── math_convert_number_base10_to_hex.svg ├── math_convert_number_binary_ to_base10.svg ├── math_convert_number_hex_to_base10.svg ├── math_convert_radians_to_degrees.svg ├── math_cos.svg ├── math_divide.svg ├── math_e.svg ├── math_equal.svg ├── math_floor.svg ├── math_format_as_decimal.svg ├── math_greater.svg ├── math_greater_or_equal.svg ├── math_is_base10.svg ├── math_is_binary.svg ├── math_is_hexadecimal.svg ├── math_is_number.svg ├── math_less.svg ├── math_less_or_equal.svg ├── math_log.svg ├── math_max.svg ├── math_min.svg ├── math_modulo_of.svg ├── math_multiply.svg ├── math_neg.svg ├── math_not_equal.svg ├── math_number.svg ├── math_power.svg ├── math_quotient_of.svg ├── math_random_fraction.svg ├── math_random_set_seed_to.svg ├── math_remainder_of.svg ├── math_round.svg ├── math_sin.svg ├── math_square_root.svg ├── math_subtract.svg └── math_tan.svg ├── procedures ├── procedures_call.svg ├── procedures_call2.svg ├── procedures_to_do.svg └── procedures_to_result.svg ├── text ├── text_compare_texts_bigger.svg ├── text_compare_texts_equal.svg ├── text_compare_texts_smaller.svg ├── text_contains.svg ├── text_downcase.svg ├── text_is_a_string.svg ├── text_is_empty.svg ├── text_join.svg ├── text_length.svg ├── text_segment.svg ├── text_split.svg ├── text_split_at_any.svg ├── text_split_at_first.svg ├── text_split_at_first_of_any.svg ├── text_split_at_spaces.svg ├── text_start_at.svg ├── text_text.svg ├── text_trim.svg └── text_upcase.svg └── variables ├── variables_get.svg ├── variables_initialize_global.svg ├── variables_initialize_local.svg ├── variables_initialize_local2.svg └── variables_set.svg /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/README.md -------------------------------------------------------------------------------- /blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/blocks.png -------------------------------------------------------------------------------- /license.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/license.png -------------------------------------------------------------------------------- /svg/colors/colors_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_black.svg -------------------------------------------------------------------------------- /svg/colors/colors_blue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_blue.svg -------------------------------------------------------------------------------- /svg/colors/colors_cyan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_cyan.svg -------------------------------------------------------------------------------- /svg/colors/colors_darkgray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_darkgray.svg -------------------------------------------------------------------------------- /svg/colors/colors_gray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_gray.svg -------------------------------------------------------------------------------- /svg/colors/colors_green.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_green.svg -------------------------------------------------------------------------------- /svg/colors/colors_lightgray.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_lightgray.svg -------------------------------------------------------------------------------- /svg/colors/colors_magenta.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_magenta.svg -------------------------------------------------------------------------------- /svg/colors/colors_make_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_make_color.svg -------------------------------------------------------------------------------- /svg/colors/colors_orange.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_orange.svg -------------------------------------------------------------------------------- /svg/colors/colors_pink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_pink.svg -------------------------------------------------------------------------------- /svg/colors/colors_red.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_red.svg -------------------------------------------------------------------------------- /svg/colors/colors_split_color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_split_color.svg -------------------------------------------------------------------------------- /svg/colors/colors_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_white.svg -------------------------------------------------------------------------------- /svg/colors/colors_yellow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/colors/colors_yellow.svg -------------------------------------------------------------------------------- /svg/control/control_break.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_break.svg -------------------------------------------------------------------------------- /svg/control/control_close_application.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_close_application.svg -------------------------------------------------------------------------------- /svg/control/control_close_screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_close_screen.svg -------------------------------------------------------------------------------- /svg/control/control_close_screen_with_plain_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_close_screen_with_plain_text.svg -------------------------------------------------------------------------------- /svg/control/control_close_screen_with_value.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_close_screen_with_value.svg -------------------------------------------------------------------------------- /svg/control/control_do_result.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_do_result.svg -------------------------------------------------------------------------------- /svg/control/control_evaluate_but_ignore_result.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_evaluate_but_ignore_result.svg -------------------------------------------------------------------------------- /svg/control/control_for_each_item_in_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_for_each_item_in_list.svg -------------------------------------------------------------------------------- /svg/control/control_for_each_number_from.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_for_each_number_from.svg -------------------------------------------------------------------------------- /svg/control/control_get_plain_start_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_get_plain_start_text.svg -------------------------------------------------------------------------------- /svg/control/control_get_start_value.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_get_start_value.svg -------------------------------------------------------------------------------- /svg/control/control_if_then.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_if_then.svg -------------------------------------------------------------------------------- /svg/control/control_if_then_else.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_if_then_else.svg -------------------------------------------------------------------------------- /svg/control/control_open_another_screen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_open_another_screen.svg -------------------------------------------------------------------------------- /svg/control/control_open_another_screen_with_start_value.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_open_another_screen_with_start_value.svg -------------------------------------------------------------------------------- /svg/control/control_while_test_do.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/control/control_while_test_do.svg -------------------------------------------------------------------------------- /svg/lists/list_add_items_to_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_add_items_to_list.svg -------------------------------------------------------------------------------- /svg/lists/list_append_to_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_append_to_list.svg -------------------------------------------------------------------------------- /svg/lists/list_copy_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_copy_list.svg -------------------------------------------------------------------------------- /svg/lists/list_create_empty_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_create_empty_list.svg -------------------------------------------------------------------------------- /svg/lists/list_index_in_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_index_in_list.svg -------------------------------------------------------------------------------- /svg/lists/list_insert_list_item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_insert_list_item.svg -------------------------------------------------------------------------------- /svg/lists/list_is_a_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_is_a_list.svg -------------------------------------------------------------------------------- /svg/lists/list_is_in_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_is_in_list.svg -------------------------------------------------------------------------------- /svg/lists/list_is_list_empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_is_list_empty.svg -------------------------------------------------------------------------------- /svg/lists/list_join_items_using_separator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_join_items_using_separator.svg -------------------------------------------------------------------------------- /svg/lists/list_length_of_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_length_of_list.svg -------------------------------------------------------------------------------- /svg/lists/list_list_from_csv_row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_list_from_csv_row.svg -------------------------------------------------------------------------------- /svg/lists/list_list_from_csv_table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_list_from_csv_table.svg -------------------------------------------------------------------------------- /svg/lists/list_list_to_csv_row.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_list_to_csv_row.svg -------------------------------------------------------------------------------- /svg/lists/list_list_to_csv_table.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_list_to_csv_table.svg -------------------------------------------------------------------------------- /svg/lists/list_lookup_in_pairs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_lookup_in_pairs.svg -------------------------------------------------------------------------------- /svg/lists/list_make_a_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_make_a_list.svg -------------------------------------------------------------------------------- /svg/lists/list_pick_a_random_item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_pick_a_random_item.svg -------------------------------------------------------------------------------- /svg/lists/list_remove_list_item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_remove_list_item.svg -------------------------------------------------------------------------------- /svg/lists/list_replace_list_item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_replace_list_item.svg -------------------------------------------------------------------------------- /svg/lists/list_reverse_list.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_reverse_list.svg -------------------------------------------------------------------------------- /svg/lists/list_select_list_item.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/lists/list_select_list_item.svg -------------------------------------------------------------------------------- /svg/logic/logic_and.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/logic/logic_and.svg -------------------------------------------------------------------------------- /svg/logic/logic_equal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/logic/logic_equal.svg -------------------------------------------------------------------------------- /svg/logic/logic_false.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/logic/logic_false.svg -------------------------------------------------------------------------------- /svg/logic/logic_not.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/logic/logic_not.svg -------------------------------------------------------------------------------- /svg/logic/logic_not_equal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/logic/logic_not_equal.svg -------------------------------------------------------------------------------- /svg/logic/logic_or.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/logic/logic_or.svg -------------------------------------------------------------------------------- /svg/logic/logic_true.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/logic/logic_true.svg -------------------------------------------------------------------------------- /svg/math/math_absolute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_absolute.svg -------------------------------------------------------------------------------- /svg/math/math_acos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_acos.svg -------------------------------------------------------------------------------- /svg/math/math_add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_add.svg -------------------------------------------------------------------------------- /svg/math/math_asin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_asin.svg -------------------------------------------------------------------------------- /svg/math/math_atan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_atan.svg -------------------------------------------------------------------------------- /svg/math/math_atan2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_atan2.svg -------------------------------------------------------------------------------- /svg/math/math_bitwise_and.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_bitwise_and.svg -------------------------------------------------------------------------------- /svg/math/math_bitwise_or.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_bitwise_or.svg -------------------------------------------------------------------------------- /svg/math/math_bitwise_xor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_bitwise_xor.svg -------------------------------------------------------------------------------- /svg/math/math_ceiling.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_ceiling.svg -------------------------------------------------------------------------------- /svg/math/math_convert_degrees_to_radians.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_convert_degrees_to_radians.svg -------------------------------------------------------------------------------- /svg/math/math_convert_number_base10_to_binary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_convert_number_base10_to_binary.svg -------------------------------------------------------------------------------- /svg/math/math_convert_number_base10_to_hex.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_convert_number_base10_to_hex.svg -------------------------------------------------------------------------------- /svg/math/math_convert_number_binary_ to_base10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_convert_number_binary_ to_base10.svg -------------------------------------------------------------------------------- /svg/math/math_convert_number_hex_to_base10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_convert_number_hex_to_base10.svg -------------------------------------------------------------------------------- /svg/math/math_convert_radians_to_degrees.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_convert_radians_to_degrees.svg -------------------------------------------------------------------------------- /svg/math/math_cos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_cos.svg -------------------------------------------------------------------------------- /svg/math/math_divide.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_divide.svg -------------------------------------------------------------------------------- /svg/math/math_e.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_e.svg -------------------------------------------------------------------------------- /svg/math/math_equal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_equal.svg -------------------------------------------------------------------------------- /svg/math/math_floor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_floor.svg -------------------------------------------------------------------------------- /svg/math/math_format_as_decimal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_format_as_decimal.svg -------------------------------------------------------------------------------- /svg/math/math_greater.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_greater.svg -------------------------------------------------------------------------------- /svg/math/math_greater_or_equal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_greater_or_equal.svg -------------------------------------------------------------------------------- /svg/math/math_is_base10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_is_base10.svg -------------------------------------------------------------------------------- /svg/math/math_is_binary.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_is_binary.svg -------------------------------------------------------------------------------- /svg/math/math_is_hexadecimal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_is_hexadecimal.svg -------------------------------------------------------------------------------- /svg/math/math_is_number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_is_number.svg -------------------------------------------------------------------------------- /svg/math/math_less.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_less.svg -------------------------------------------------------------------------------- /svg/math/math_less_or_equal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_less_or_equal.svg -------------------------------------------------------------------------------- /svg/math/math_log.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_log.svg -------------------------------------------------------------------------------- /svg/math/math_max.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_max.svg -------------------------------------------------------------------------------- /svg/math/math_min.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_min.svg -------------------------------------------------------------------------------- /svg/math/math_modulo_of.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_modulo_of.svg -------------------------------------------------------------------------------- /svg/math/math_multiply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_multiply.svg -------------------------------------------------------------------------------- /svg/math/math_neg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_neg.svg -------------------------------------------------------------------------------- /svg/math/math_not_equal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_not_equal.svg -------------------------------------------------------------------------------- /svg/math/math_number.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_number.svg -------------------------------------------------------------------------------- /svg/math/math_power.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_power.svg -------------------------------------------------------------------------------- /svg/math/math_quotient_of.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_quotient_of.svg -------------------------------------------------------------------------------- /svg/math/math_random_fraction.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_random_fraction.svg -------------------------------------------------------------------------------- /svg/math/math_random_set_seed_to.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_random_set_seed_to.svg -------------------------------------------------------------------------------- /svg/math/math_remainder_of.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_remainder_of.svg -------------------------------------------------------------------------------- /svg/math/math_round.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_round.svg -------------------------------------------------------------------------------- /svg/math/math_sin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_sin.svg -------------------------------------------------------------------------------- /svg/math/math_square_root.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_square_root.svg -------------------------------------------------------------------------------- /svg/math/math_subtract.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_subtract.svg -------------------------------------------------------------------------------- /svg/math/math_tan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/math/math_tan.svg -------------------------------------------------------------------------------- /svg/procedures/procedures_call.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/procedures/procedures_call.svg -------------------------------------------------------------------------------- /svg/procedures/procedures_call2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/procedures/procedures_call2.svg -------------------------------------------------------------------------------- /svg/procedures/procedures_to_do.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/procedures/procedures_to_do.svg -------------------------------------------------------------------------------- /svg/procedures/procedures_to_result.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/procedures/procedures_to_result.svg -------------------------------------------------------------------------------- /svg/text/text_compare_texts_bigger.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_compare_texts_bigger.svg -------------------------------------------------------------------------------- /svg/text/text_compare_texts_equal.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_compare_texts_equal.svg -------------------------------------------------------------------------------- /svg/text/text_compare_texts_smaller.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_compare_texts_smaller.svg -------------------------------------------------------------------------------- /svg/text/text_contains.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_contains.svg -------------------------------------------------------------------------------- /svg/text/text_downcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_downcase.svg -------------------------------------------------------------------------------- /svg/text/text_is_a_string.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_is_a_string.svg -------------------------------------------------------------------------------- /svg/text/text_is_empty.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_is_empty.svg -------------------------------------------------------------------------------- /svg/text/text_join.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_join.svg -------------------------------------------------------------------------------- /svg/text/text_length.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_length.svg -------------------------------------------------------------------------------- /svg/text/text_segment.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_segment.svg -------------------------------------------------------------------------------- /svg/text/text_split.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_split.svg -------------------------------------------------------------------------------- /svg/text/text_split_at_any.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_split_at_any.svg -------------------------------------------------------------------------------- /svg/text/text_split_at_first.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_split_at_first.svg -------------------------------------------------------------------------------- /svg/text/text_split_at_first_of_any.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_split_at_first_of_any.svg -------------------------------------------------------------------------------- /svg/text/text_split_at_spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_split_at_spaces.svg -------------------------------------------------------------------------------- /svg/text/text_start_at.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_start_at.svg -------------------------------------------------------------------------------- /svg/text/text_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_text.svg -------------------------------------------------------------------------------- /svg/text/text_trim.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_trim.svg -------------------------------------------------------------------------------- /svg/text/text_upcase.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/text/text_upcase.svg -------------------------------------------------------------------------------- /svg/variables/variables_get.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/variables/variables_get.svg -------------------------------------------------------------------------------- /svg/variables/variables_initialize_global.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/variables/variables_initialize_global.svg -------------------------------------------------------------------------------- /svg/variables/variables_initialize_local.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/variables/variables_initialize_local.svg -------------------------------------------------------------------------------- /svg/variables/variables_initialize_local2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/variables/variables_initialize_local2.svg -------------------------------------------------------------------------------- /svg/variables/variables_set.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterMathijssen/appinventorblocks/HEAD/svg/variables/variables_set.svg --------------------------------------------------------------------------------