Skip to content

Latest commit

 

History

History
79 lines (33 loc) · 1.6 KB

README.md

File metadata and controls

79 lines (33 loc) · 1.6 KB

BarsAndTubes

Simple 3D library for openscad that makes it easy to generate the most common bar and tube profiles.

BarsAndTubes

Usage

Just include the file BarsAndTubes.scad in the beginning of your scad file like this:

include <BarsAndTubes.scad>;

Profiles

Up to now there are following basic metal profiles available:

Hexagonal Bar: hexBar( barWidth,barLength );

Hexagonal Bar

Rectangular Bar: rectangularBar( barWidth,barHeight,barLength );

Rectangular Bar

Square Bar: squareBar( barWidth,barLength );

Square Bar

Round Bar: roundBar( barDiameter,barLength );

Round Bar

Rectangular Tube: rectangularTube( tubeWidth, tubeHeight, tubeLength, tubeWall );

Rectangular Tube

Square Tube: squareTube( tubeHeight, tubeLength, tubeWall );

Square Tube

Round Tube: roundTube( tubeDiameter, tubeLength, tubeWall );

Round Tube

Angle Iron: angleIron( angleWidth, angleHeight, angleLength, angleWall );

Angle Iron

U Profile: uProfile( uprofileWidth, uprofileHeight, uprofileLength, uprofileWall );

U Profile

References

Authors:

License

Distributed under the MIT License.