2025-02-12 18:22:54 -03:00
2025-02-12 18:22:54 -03:00
2024-12-28 17:19:58 -03:00
2025-02-12 18:16:32 -03:00
2025-02-12 17:47:59 -03:00
2025-02-12 18:22:54 -03:00
2025-02-12 17:47:59 -03:00
2025-02-12 18:16:32 -03:00
2025-02-12 17:50:32 -03:00

Metalib

Libraries for Metal makers

Miter tubes module

This module generates a sequence of mitered tubes based on the provided section lengths, with options for customizing their dimensions and unfolding their arrangement.

Parameters:

  • sections (array): An array of section lengths, each specifying the length of an individual tube. Example: [10, 20, 30] will create three tubes of lengths 10, 20, and 30 units respectively.

  • height (number): The height of each tube. This value defines the dimension perpendicular to the tube's length and depth.

  • depth (number): The depth of each tube. This value defines the dimension perpendicular to the tube's length and height.

  • unfold (boolean, optional): Determines whether the sequence of tubes should be unfolded for easier visualization or fabrication. When true, the tubes are laid out in a flat arrangement. Defaults to false.

As an example let's create metalon arch :

include <BOSL2/std.scad>;
include <Metalib/metalib.scad>;

yrot(-90) 
	miter_tubes([400,500,400],30,20,start=false,end=false);

Description
No description provided
Readme 235 KiB
Languages
OpenSCAD 99.4%
Shell 0.6%