Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

1) CADDShape:

This object draws is used to draw a polygon.

Example:

Code Block
languagexml
<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 is used to draw a Rectangle.

Example:

Code Block
languagexml
<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)

...

4) CADDEllipse:

This object draws is used to draw a Ellipse.

Example:

Code Block
languagexml
<O N="CadObject4" T="Project" Category="CAD Object" TransAlignRule="Right">
    <!-- created by ParamML Examples on 03.02.2023 -->
    <O N="CADD_Objects" T="CADD">
        <O T="CADDEllipse" X="6.3" Y="21.3" RZ="0">
            <P N="Radius1" V="1.9" />
            <P N="Radius2" V="0.5" />
        </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=objidrh9isdc09rnlfyl1vf8r3q)

...

5) CADDCircle:

This object draws is used to draw a Circle.

Example:

Code Block
languagexml
<O N="CadObject5" T="Project" Category="CAD Object" TransAlignRule="Right">
    <!-- created by ParamML Examples on 03.02.2023 -->
    <O N="CADD_Objects" T="CADD">
        <O T="CADDCircle" X="2.7" Y="18.6" RZ="0">
            <P N="Radius" V="1.3" />
        </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=objid4054g344e0h8bzk362itq9)

6) CADDArc:

This object draws is used to draw an Arc.

Example:

Code Block
languagexml
<O N="CadObject6" T="Project" Category="CAD Object" TransAlignRule="Right">
    <!-- created by ParamML Examples on 03.02.2023 -->
    <O N="CADD_Objects" T="CADD">
        <O T="CADDArc" X="8" Y="22.6" RZ="0">
            <O T="Point" X="-1.3" Y="0.8" />
            <O T="Point" X="-0.2" Y="1.5" />
            <O T="Point" X="1.1" Y="1.1" />
        </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=objidzh40piiqd68bpqrknaunhj)

7) CADDBezier

This object is used to draw a bezier curve.

Example:

Code Block
languagexml
<O N="CadObject7" T="Project" Category="CAD Object" TransAlignRule="Right">
    <!-- created by ParamML Examples on 03.02.2023 -->
    <O N="CADD_Objects" T="CADD">
        <O T="CADDBezier" X="14.6" Y="26.1" RZ="0">
            <O T="Point" X="-1.5" Y="-0.2" />
            <O T="Point" X="-0.2" Y="0.4" />
            <O T="Point" X="0.8" Y="0" />
            <O T="Point" X="0" Y="-0.5" />
        </O>
    </O>
</O>
Image Added

To view this example in the library, see (https://openbrim.org/platform/?application=inc&author=ParamML_Examples_OpenBrIM+Platform&folder=CAD+Object&obj=objidxjmtgrgvasif61phwegvk)

8) CADDCurve:

This object is used to draw curves.

Example: