1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-07-30 19:40:24 +02:00

use new modules/functions

This commit is contained in:
Justin Lin
2021-11-22 09:31:05 +08:00
parent 345603551b
commit 7a8c152607
3 changed files with 9 additions and 9 deletions

View File

@@ -18,7 +18,7 @@ include <test_along_with.scad>;
// Function
include <test_ptf_rotate.scad>;
include <test_cross_sections.scad>;
include <test_paths2sections.scad>;
include <test_rails2sections.scad>;
include <test_in_polyline.scad>;
include <test_trim_shape.scad>;
include <test_midpt_smooth.scad>;
@@ -44,7 +44,7 @@ include <test_shape_ellipse.scad>;
include <test_shape_pie.scad>;
include <test_shape_square.scad>;
include <test_shape_trapezium.scad>;
include <test_shape_starburst.scad>;
include <test_shape_star.scad>;
include <test_shape_superformula.scad>;
include <test_shape_path_extend.scad>;

View File

@@ -1,11 +1,11 @@
use <unittest.scad>;
use <bezier_curve.scad>;
use <paths2sections.scad>;
use <rails2sections.scad>;
module test_paths2sections() {
module test_rails2sections() {
module test_simple_path() {
echo("==== test_paths2sections_simple_path ====");
echo("==== test_rails2sections_simple_path ====");
paths = [
[[5, 0, 5], [15, 10, 10], [25, 20, 5]],
@@ -20,7 +20,7 @@ module test_paths2sections() {
[[25, 20, 5], [-25, 20, 5], [-25, 20, -5], [25, 20, -5]]
];
actual = paths2sections(paths);
actual = rails2sections(paths);
for(i = [0:len(paths[0]) - 1]) {
assertEqualPoints(expected[i], actual[i]);
@@ -29,7 +29,7 @@ module test_paths2sections() {
module test_bezier_path() {
echo("==== test_paths2sections_bezier_path ====");
echo("==== test_rails2sections_bezier_path ====");
t_step = 0.05;
@@ -48,7 +48,7 @@ module test_paths2sections() {
)
];
sections = paths2sections(paths);
sections = rails2sections(paths);
for(i = [0:len(sections) - 1]) {
for(j = [0:len(sections[i]) - 1]) {
@@ -61,4 +61,4 @@ module test_paths2sections() {
test_bezier_path();
}
test_paths2sections();
test_rails2sections();