1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-01-17 22:28:16 +01:00
dotSCAD/test/test_all.scad

41 lines
1.1 KiB
OpenSCAD
Raw Normal View History

2017-05-25 14:09:17 +08:00
// 2D
include <test_rounded_square.scad>;
2017-05-26 10:20:32 +08:00
include <test_line2d.scad>;
2017-05-26 14:24:06 +08:00
include <test_polyline2d.scad>;
2017-05-26 20:01:32 +08:00
include <test_hull_polyline2d.scad>;
2017-05-29 18:40:38 +08:00
include <test_hexagons.scad>;
2017-05-25 14:09:17 +08:00
2017-05-30 16:06:06 +08:00
// 3D
include <test_rounded_cube.scad>;
2017-06-01 09:25:17 +08:00
include <test_rounded_cylinder.scad>;
2017-06-02 10:34:17 +08:00
include <test_crystal_ball.scad>;
2017-06-05 15:40:59 +08:00
include <test_line3d.scad>;
2017-06-07 08:55:01 +08:00
include <test_polyline3d.scad>;
2017-06-08 14:42:52 +08:00
include <test_hull_polyline3d.scad>;
2017-06-12 13:16:06 +08:00
include <test_function_grapher.scad>;
2017-06-15 10:48:10 +08:00
include <test_polysections.scad>;
2017-05-30 16:06:06 +08:00
2017-06-17 18:09:00 +08:00
// Transformation
include <test_along_with.scad>;
2017-06-19 17:51:28 +08:00
include <test_bend.scad>;
2017-06-17 18:09:00 +08:00
2017-06-01 12:59:27 +08:00
// Function
2017-06-20 17:47:16 +08:00
include <test_rotate_p.scad>;
2017-06-22 14:42:56 +08:00
include <test_sub_str.scad>;
2017-06-22 14:58:29 +08:00
include <test_split_str.scad>;
include <test_parse_number.scad>;
2017-06-22 15:05:09 +08:00
include <test_cross_sections.scad>;
include <test_paths2sections.scad>;
2017-06-01 12:59:27 +08:00
// Path
include <test_circle_path.scad>;
2017-06-22 18:08:57 +08:00
2017-05-25 14:09:17 +08:00
// 2D Shape
include <test_shape_arc.scad>;
include <test_shape_cyclicpolygon.scad>;
include <test_shape_ellipse.scad>;
include <test_shape_pie.scad>;
include <test_shape_square.scad>;
include <test_shape_trapezium.scad>;
2017-05-26 06:47:12 +08:00
include <test_shape_superformula.scad>;
2017-05-26 10:20:32 +08:00
include <test_shape_path_extend.scad>;