Changed to relative include names

This commit is contained in:
Adrian Mariano 2020-07-21 20:05:21 -04:00
parent a73ca6368c
commit 7eafa691b4
27 changed files with 40 additions and 40 deletions

View file

@ -1,5 +1,5 @@
include <BOSL2/std.scad> include <../std.scad>
include <BOSL2/hull.scad> include <../hull.scad>
testpoints_on_sphere = [ for(p = testpoints_on_sphere = [ for(p =

View file

@ -1,5 +1,5 @@
include<BOSL2/std.scad> include<../std.scad>
include<BOSL2/polyhedra.scad> include<../polyhedra.scad>
$fn=96; $fn=96;

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
module test_ident() { module test_ident() {

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
// List/Array Ops // List/Array Ops

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
module test_typeof() { module test_typeof() {

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
module test_point2d() { module test_point2d() {

View file

@ -1,5 +1,5 @@
include <BOSL2/std.scad> include <../std.scad>
include <BOSL2/cubetruss.scad> include <../cubetruss.scad>
module test_cubetruss_dist() { module test_cubetruss_dist() {

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
module test_standard_anchors() { module test_standard_anchors() {

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
module test_is_edge_array() { module test_is_edge_array() {

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
// Can't test echo output as yet. Include these for coverage calculations. // Can't test echo output as yet. Include these for coverage calculations.

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
module test_point_on_segment2d() { module test_point_on_segment2d() {

View file

@ -1,5 +1,5 @@
include <BOSL2/std.scad> include <../std.scad>
include <BOSL2/linear_bearings.scad> include <../linear_bearings.scad>
module test_get_lmXuu_bearing_diam() { module test_get_lmXuu_bearing_diam() {

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
// Simple Calculations // Simple Calculations

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
module test_HSL() { module test_HSL() {

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
module test_square() { module test_square() {

View file

@ -1,5 +1,5 @@
include <BOSL2/std.scad> include <../std.scad>
include <BOSL2/strings.scad> include <../strings.scad>
function rec_cmp(a,b,eps=1e-9) = function rec_cmp(a,b,eps=1e-9) =

View file

@ -1,5 +1,5 @@
include <BOSL2/std.scad> include <../std.scad>
include <BOSL2/queues.scad> include <../queues.scad>
module test_queue_init() { module test_queue_init() {

View file

@ -1,5 +1,5 @@
include <BOSL2/std.scad> include <../std.scad>
include <BOSL2/hull.scad> include <../hull.scad>
module test_prismoid() { module test_prismoid() {

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
module test_turtle() { module test_turtle() {

View file

@ -1,5 +1,5 @@
include <BOSL2/std.scad> include <../std.scad>
include <BOSL2/skin.scad> include <../skin.scad>
module test_skin() { module test_skin() {

View file

@ -1,5 +1,5 @@
include <BOSL2/std.scad> include <../std.scad>
include <BOSL2/stacks.scad> include <../stacks.scad>
module test_stack_init() { module test_stack_init() {

View file

@ -1,5 +1,5 @@
include <BOSL2/std.scad> include <../std.scad>
include <BOSL2/strings.scad> include <../strings.scad>
module test_upcase() { module test_upcase() {

View file

@ -1,5 +1,5 @@
include <BOSL2/std.scad> include <../std.scad>
include <BOSL2/structs.scad> include <../structs.scad>
module test_struct_set() { module test_struct_set() {

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
module test_translate() { module test_translate() {

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
module test_is_vector() { module test_is_vector() {
@ -60,7 +60,7 @@ module test_vabs() {
} }
test_vabs(); test_vabs();
include <BOSL2/strings.scad> include <../strings.scad>
module test_vang() { module test_vang() {
assert(vang([1,0])==0); assert(vang([1,0])==0);
assert(vang([0,1])==90); assert(vang([0,1])==90);

View file

@ -1,4 +1,4 @@
include <BOSL2/std.scad> include <../std.scad>
module test_bosl_version() { module test_bosl_version() {

View file

@ -1,5 +1,5 @@
include <BOSL2/std.scad> include <../std.scad>
include <BOSL2/vnf.scad> include <../vnf.scad>
module test_is_vnf() { module test_is_vnf() {