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 draws a polygon.
<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> |
To view this example in the library, see (https://openbrim.org/platform/?application=inc&author=ParamML_Examples_OpenBrIM+Platform&folder=CAD+Object&obj=objid0zvs1stvbzmnlydh61nngbh) |
2)CADDRect
This object draws a rectangle.
<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> |
To view this example in the library, see (https://openbrim.org/platform/?application=inc&author=ParamML_Examples_OpenBrIM+Platform&folder=CAD+Object&obj=objidxmcjeqf3xwo4jjlo9w2e04) |
3) CADDLine
Add Comment