An OpenSCAD library to add dimensions onto your projects.
This library is based on the projects dimensional-drawings and Canny Machines (Don Smiley).
- Download the .zip or .tar.gz release file for this library.
- Extract the archive. This will create an
openscad-new-dimensionsdirectory containing the library files. - Move the
openscad-new-dimensionsdirectory to the appropriate OpenSCAD library directory for your platform:- Windows: My Documents\OpenSCAD\libraries\
- Linux: $HOME/.local/share/OpenSCAD/libraries/
- macOS: $HOME/Documents/OpenSCAD/libraries/
- Restart OpenSCAD.
You can create labels, linear dimensions, angular dimensions, and angle overviews that represent the angles required to cut your material.
You can use these elements in 2D or 3D projects by setting DIMENSION_RENDER_MODE.
include <openscad-new-dimensions/constants.scad>;
include <openscad-new-dimensions/dimensions.scad>Label(string, bbox=[0, 0], angle=0, height);string: the text to display. IfLabelis wrapped inside a module andstringis not defined, the parent module's name will be used. Default:undefined.bbox: centres the label within this bounding box. Default:[0, 0].angle: rotates the label by the given angle. Default:0.height: extrudes the label along the Z axis by the given height. Default:undefined.
Dimension(length, line_width=DIMENSION_LINE_WIDTH, loc=DIMENSION_CENTER);length: the length of the dimension line. Default:undefined.line_width: the width of the dimension line. Default:DIMENSION_LINE_WIDTH.loc: the location of the dimension label. Choices:DIMENSION_CENTER,DIMENSION_LEFT,DIMENSION_RIGHT,DIMENSION_OUTSIDE,DIMENSION_ABOVE,DIMENSION_UNDER. Default:DIMENSION_CENTER.
Angle(angle, radius=10, label_angle=0, label_offset=10, show_spokes=false, spokes_overflow=2);angle: the angle value. Default:undefined.radius: the radius of the arc representing the angle. Default:10.label_angle: rotates the label by the given angle. Default:0.label_offset: offsets the label by the given value. Default:10.show_spokes: if true, the angle is represented by an arc and two spokes. Default:false.spokes_overflow: the spokes exceed the arc's radius by the given value. Default:2.
This module displays a representation of the angle needed to cut your material. This is useful on a blueprint where all items are viewed from above.
AngleOverview(angle, height, label="", zoom=2, max_width=20);angle: the angle to show. Default:undefined.height: the height of the polygon representing a side cut of your material. Default:undefined.label: a label to show. Default:"".zoom: scales the whole angle overview. Default:2.max_width: the maximum width of the polygon representing a side cut of your material. Default:20.
DIMENSION_LINE_WIDTH (default: .5)
Width of dimension lines.
DIMENSION_HEIGHT (default: .1)
Height of lines (Z axis).
DIMENSION_ARROW_WIDTH (default: .5)
Width of arrows.
DIMENSION_ARROW_LENGTH (default: 4)
Length of arrows.
DIMENSION_ARROW_HOLLOW (default: 1)
Value between .1 and 1.
DIMENSION_FONT_SIZE (default: DIMENSION_LINE_WIDTH)
Font size for dimensions.
DIMENSION_COLOR (default: black)
Color of the dimensions.
DIMENSION_RENDER_MODE (default: DIMENSION_RENDER_MODE_2D)
Rendering mode of dimensions. Can be DIMENSION_RENDER_MODE_2D or DIMENSION_RENDER_MODE_3D.