1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-08-13 18:24:28 +02:00
This commit is contained in:
Justin Lin
2020-01-27 15:11:40 +08:00
parent 3ad03be311
commit 3ae3029b57
2 changed files with 4 additions and 4 deletions

View File

@@ -8,8 +8,8 @@
* *
**/ **/
include <__comm__/__frags.scad>; use <__comm__/__frags.scad>;
include <__comm__/__nearest_multiple_of_4.scad>; use <__comm__/__nearest_multiple_of_4.scad>;
module line2d(p1, p2, width, p1Style = "CAP_SQUARE", p2Style = "CAP_SQUARE") { module line2d(p1, p2, width, p1Style = "CAP_SQUARE", p2Style = "CAP_SQUARE") {
half_width = 0.5 * width; half_width = 0.5 * width;

View File

@@ -1,5 +1,5 @@
include <unittest.scad>; use <unittest.scad>;
include <line2d.scad>; use <line2d.scad>;
module test_line2d() { module test_line2d() {
$fn = 24; $fn = 24;