For the complete documentation index, see llms.txt. This page is also available as Markdown.

CADD Object

The "CADD" object in OpenBrIM enables users to create and annotate 2D drawings, such as elevation views and floor plans of the structure.

Users can either add a "CADD" object and create 2D drawings using the ParamML code, or they can add child elements of the "CADD" object through the "CADD" window to create the 2D drawings.

CADD drawings are created with the help of the following sub-items.

1) CADDShape:

This object is used to draw a polygon.

Example:

<O N="CadObject1" T="Project" Category="CAD Object" TransAlignRule="Right">
    <!-- created by ParamML Examples on 03.02.2023 -->
    <O N="CADD_Objects" T="CADD">
        <O T="CADDShape" X="-11" Y="3" RZ="0">
            <O T="Point" X="-2" Y="2" />
            <O T="Point" X="-5" Y="-2" />
            <O T="Point" X="4" Y="-2" />
            <O T="Point" X="3" Y="2" />
        </O>
    </O>
</O>

2)CADDRect:

This object is used to draw a Rectangle.

Example:

3) CADDLine:

The "CADDLine" object draws a line in a 2D drawing. The line style and thickness can be adjusted using the parameters of "Thickness," "Color," and "LineStyle." The line thickness is set with the "Thickness" parameter, and the color is set with the "Color" parameter.

The "LineStyle" parameter determines the number of lines and spaces, for example, LineStyle=[5,15] will consist of 5 lines followed by 15 spaces.

Example:

4) CADDEllipse:

This object is used to draw a Ellipse.

Example:

5) CADDCircle:

This object is used to draw a Circle.

Example:

6) CADDArc:

This object is used to draw an Arc.

Example:

7) CADDBezier

This object is used to draw a bezier curve.

Example:

8) CADDCurve:

This object is used to draw curves.

Example:

9) CADDFreeline:

This object is used to draw free hand line.

Example:

10) CADDText

This object allows to put text on the CADD drawing. Just like the "Text3D" object || Expressions written in the expression show the results.

Example:

11) CADDDimensionLine:

CADDDimensionLine object provides dimension of a length measured in a 2D drawing.

Example:

12) CADDDimensionRadius:

CADDDimensionRadius object provides dimension of a radius of a circle measured in a 2D drawing.

Example:

Last updated