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> |
3D View |
To view this example in the library, see (OpenBrIM Platform) |
2)CADDRect:
This object is used to draw a Rectangle.
Example:
<O N="CadObject2" T="Project" Category="CAD Object" TransAlignRule="Right">
<!-- created by ParamML Examples on 03.02.2023 -->
<O N="CADD_Objects" T="CADD">
<O N="Shp1" T="CADDRect" X="-11" Y="10" RZ="0">
<P N="W" V="5" />
<P N="H" V="2" />
</O>
</O>
</O> |
CADD Objects |
To view this example in the library, see (OpenBrIM Platform) |
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:
<O N="CadObject3" T="Project" Category="CAD Object" TransAlignRule="Right">
<!-- created by ParamML Examples on 03.02.2023 -->
<O N="CADD_Objects" T="CADD">
<O N="Shp1" T="CADDLine" X="0" Y="-10" RZ="0">
<O T="Point" X="10" Y="0" />
<O T="Point" X="50" Y="-10" />
</O>
</O>
</O> |
To view this example in the library, see (OpenBrIM Platform) |
4) CADDEllipse:
This object is used to draw a Ellipse.
Example:
To view this example in the library, see (OpenBrIM Platform) |
5) CADDCircle:
This object is used to draw a Circle.
Example:
To view this example in the library, see (OpenBrIM Platform) |
6) CADDArc:
This object is used to draw an Arc.
Example:
To view this example in the library, see (OpenBrIM Platform) |
7) CADDBezier
This object is used to draw a bezier curve.
Example:
|
To view this example in the library, see (OpenBrIM Platform) |
8) CADDCurve:
This object is used to draw curves.
Example:
To view this example in the library, see (OpenBrIM Platform) |
9) CADDFreeline:
This object is used to draw free hand line.
Example:
To view this example in the library, see (OpenBrIM Platform) |
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:
To view this example in the library, see (OpenBrIM Platform) |
11) CADDDimensionLine:
CADDDimensionLine object provides dimension of a length measured in a 2D drawing.
Example:
To view this example in the library, see (OpenBrIM Platform) |
12) CADDDimensionRadius:
CADDDimensionRadius object provides dimension of a radius of a circle measured in a 2D drawing.
Example:
To view this example in the library, see (OpenBrIM Platform) |