mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-09-02 19:22:48 +02:00
del semicolon of use/include
This commit is contained in:
@@ -1,11 +1,11 @@
|
||||
use <util/map/hashmap.scad>;
|
||||
use <util/map/hashmap_entries.scad>;
|
||||
use <util/map/hashmap_keys.scad>;
|
||||
use <util/map/hashmap_values.scad>;
|
||||
use <util/map/hashmap_put.scad>;
|
||||
use <util/map/hashmap_len.scad>;
|
||||
use <util/map/hashmap_del.scad>;
|
||||
use <util/map/hashmap_get.scad>;
|
||||
use <util/map/hashmap.scad>
|
||||
use <util/map/hashmap_entries.scad>
|
||||
use <util/map/hashmap_keys.scad>
|
||||
use <util/map/hashmap_values.scad>
|
||||
use <util/map/hashmap_put.scad>
|
||||
use <util/map/hashmap_len.scad>
|
||||
use <util/map/hashmap_del.scad>
|
||||
use <util/map/hashmap_get.scad>
|
||||
|
||||
module test_hashmap() {
|
||||
echo("==== test_hashmap ====");
|
||||
|
@@ -1,9 +1,9 @@
|
||||
use <util/set/hashset.scad>;
|
||||
use <util/set/hashset_elems.scad>;
|
||||
use <util/set/hashset_add.scad>;
|
||||
use <util/set/hashset_del.scad>;
|
||||
use <util/set/hashset_has.scad>;
|
||||
use <util/set/hashset_len.scad>;
|
||||
use <util/set/hashset.scad>
|
||||
use <util/set/hashset_elems.scad>
|
||||
use <util/set/hashset_add.scad>
|
||||
use <util/set/hashset_del.scad>
|
||||
use <util/set/hashset_has.scad>
|
||||
use <util/set/hashset_len.scad>
|
||||
|
||||
module test_hashset() {
|
||||
echo("==== test_hashset ====");
|
||||
|
@@ -1,5 +1,5 @@
|
||||
use <util/sorted.scad>;
|
||||
use <util/binary_search.scad>;
|
||||
use <util/sorted.scad>
|
||||
use <util/binary_search.scad>
|
||||
|
||||
module test_binary_search() {
|
||||
echo("==== test_binary_search ====");
|
||||
|
@@ -1,5 +1,5 @@
|
||||
use <util/sort.scad>;
|
||||
use <util/bsearch.scad>;
|
||||
use <util/sort.scad>
|
||||
use <util/bsearch.scad>
|
||||
|
||||
module test_bsearch() {
|
||||
echo("==== test_bsearch ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/choose.scad>;
|
||||
use <util/choose.scad>
|
||||
|
||||
module test_choose() {
|
||||
echo("==== test_choose ====");
|
||||
|
@@ -1,5 +1,5 @@
|
||||
use <voxel/vx_circle.scad>;
|
||||
use <util/contains.scad>;
|
||||
use <voxel/vx_circle.scad>
|
||||
use <util/contains.scad>
|
||||
|
||||
module test_contains() {
|
||||
echo("==== test_contains ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/count.scad>;
|
||||
use <util/count.scad>
|
||||
|
||||
module test_count() {
|
||||
echo("==== test_count ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/dedup.scad>;
|
||||
use <util/dedup.scad>
|
||||
|
||||
module test_dedup() {
|
||||
echo("==== test_dedup ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/every.scad>;
|
||||
use <util/every.scad>
|
||||
|
||||
module test_every() {
|
||||
echo("==== test_every ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/fibseq.scad>;
|
||||
use <util/fibseq.scad>
|
||||
|
||||
module test_fibseq() {
|
||||
echo("==== test fibseq ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/find_index.scad>;
|
||||
use <util/find_index.scad>
|
||||
|
||||
module test_find_index() {
|
||||
echo("==== test_find_index ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/flat.scad>;
|
||||
use <util/flat.scad>
|
||||
|
||||
module test_flat() {
|
||||
echo("==== test_flat ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/lerp.scad>;
|
||||
use <util/lerp.scad>
|
||||
|
||||
module test_lerp() {
|
||||
echo("==== test_lerp ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/parse_number.scad>;
|
||||
use <util/parse_number.scad>
|
||||
|
||||
module test_parse_number() {
|
||||
echo("==== test_parse_number ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/reverse.scad>;
|
||||
use <util/reverse.scad>
|
||||
|
||||
module test_reverse() {
|
||||
echo("==== test_reverse ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/shuffle.scad>;
|
||||
use <util/shuffle.scad>
|
||||
|
||||
module test_shuffle() {
|
||||
echo("==== test_shuffle ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/slice.scad>;
|
||||
use <util/slice.scad>
|
||||
|
||||
module test_slice() {
|
||||
echo("==== test_slice ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/some.scad>;
|
||||
use <util/some.scad>
|
||||
|
||||
module test_some() {
|
||||
echo("==== test_some ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/sort.scad>;
|
||||
use <util/sort.scad>
|
||||
|
||||
module test_sort() {
|
||||
echo("==== test_sort ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/sorted.scad>;
|
||||
use <util/sorted.scad>
|
||||
|
||||
module test_sorted() {
|
||||
echo("==== test_sorted ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/spherical_coordinate.scad>;
|
||||
use <util/spherical_coordinate.scad>
|
||||
|
||||
module test_spherical_coordinate() {
|
||||
echo("==== test_spherical_coordinate ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/split_str.scad>;
|
||||
use <util/split_str.scad>
|
||||
|
||||
module test_split_str() {
|
||||
echo("==== test_split_str ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/sub_str.scad>;
|
||||
use <util/sub_str.scad>
|
||||
|
||||
module test_sub_str() {
|
||||
echo("==== test_sub_str ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/sum.scad>;
|
||||
use <util/sum.scad>
|
||||
|
||||
module test_sum() {
|
||||
echo("==== test_sum ====");
|
||||
|
@@ -1,4 +1,4 @@
|
||||
use <util/swap.scad>;
|
||||
use <util/swap.scad>
|
||||
|
||||
module test_swap() {
|
||||
echo("==== test_swap ====");
|
||||
|
@@ -1,5 +1,5 @@
|
||||
use <util/zip.scad>;
|
||||
use <util/sum.scad>;
|
||||
use <util/zip.scad>
|
||||
use <util/sum.scad>
|
||||
|
||||
module test_zip() {
|
||||
echo("==== test_zip ====");
|
||||
|
Reference in New Issue
Block a user