mirror of
https://github.com/JustinSDK/dotSCAD.git
synced 2025-08-26 16:04:46 +02:00
use full path
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
use <../sub_str.scad>;
|
use <util/sub_str.scad>;
|
||||||
use <../split_str.scad>;
|
use <util/split_str.scad>;
|
||||||
|
|
||||||
function _str_to_int(t) = ord(t) - 48;
|
function _str_to_int(t) = ord(t) - 48;
|
||||||
|
|
||||||
|
@@ -8,6 +8,6 @@
|
|||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
|
|
||||||
use <_impl/_fibseq_impl.scad>;
|
use <util/_impl/_fibseq_impl.scad>;
|
||||||
|
|
||||||
function fibseq(from, to) = _fibseq_impl(from, to);
|
function fibseq(from, to) = _fibseq_impl(from, to);
|
@@ -8,6 +8,6 @@
|
|||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
|
|
||||||
use <_impl/_parse_number_impl.scad>;
|
use <util/_impl/_parse_number_impl.scad>;
|
||||||
|
|
||||||
function parse_number(t) = _parse_number_impl(t);
|
function parse_number(t) = _parse_number_impl(t);
|
@@ -8,6 +8,6 @@
|
|||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
|
|
||||||
use <_impl/_sort_impl.scad>;
|
use <util/_impl/_sort_impl.scad>;
|
||||||
|
|
||||||
function sort(lt, by = "idx", idx = 0) = _sort_impl(lt, by, idx);
|
function sort(lt, by = "idx", idx = 0) = _sort_impl(lt, by, idx);
|
@@ -8,6 +8,6 @@
|
|||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
|
|
||||||
use <_impl/_split_str_impl.scad>;
|
use <util/_impl/_split_str_impl.scad>;
|
||||||
|
|
||||||
function split_str(t, delimiter) = _split_str_impl(t, delimiter);
|
function split_str(t, delimiter) = _split_str_impl(t, delimiter);
|
@@ -8,6 +8,6 @@
|
|||||||
*
|
*
|
||||||
**/
|
**/
|
||||||
|
|
||||||
use <_impl/_sub_str_impl.scad>;
|
use <util/_impl/_sub_str_impl.scad>;
|
||||||
|
|
||||||
function sub_str(t, begin, end) = _sub_str_impl(t, begin, end);
|
function sub_str(t, begin, end) = _sub_str_impl(t, begin, end);
|
Reference in New Issue
Block a user