Versions Compared

Key

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

CADD objesi, yapının yüksekliğini, kat planlarını, vb. 2D çizimlerini oluşturmasına ve eklemesine izin verir.
Aşağıdaki alt öğeler yardımıyla CADD çizimleri oluşturulur.

...

Code Block
languagexml
themeEclipse
<O N="CADD Objects" T="CADD">
    <O N="Mavi" T="CADDLine" Color="#4286f4">
       <O T="Point" X="10" Y="0" />
           <O T="Point" X="50" Y="0" />
       </O>
       <O N="Kırmızı" T="CADDLine" Color="red" Thickness="2" LineStyle="[6,3]">
           <O T="Point" X="10" Y="10" />
           <O T="Point" X="50" Y="10" />
       </O>
       <O N="Turuncu" T="CADDLine" Color="orange" Thickness="10" LineStyle="[20,5]">
           <O T="Point" X="10" Y="20" />
           <O T="Point" X="50" Y="20" />
       </O>
       <O N="Yeşil" T="CADDLine" Color="#8ff441" Thickness="6" LineStyle="[15,5]">
           <O T="Point" X="10" Y="30" />
           <O T="Point" X="50" Y="30" />
       </O>
       <O N="Pembe" T="CADDLine" Color="pink" Thickness="4" LineStyle="[100,30,15,30]">
           <O T="Point" X="10" Y="40" />
           <O T="Point" X="50" Y="40" />
       </O>
       <O N="Mor" T="CADDLine" Color="Purple" Thickness="2" LineStyle="[15,5,30]">
           <O T="Point" X="10" Y="50" />
           <O T="Point" X="50" Y="50" />
       </O>
</O>


Örnek için ziyaret ediniz: https://www.openbrim.org/objidiyf9qi00rxg305h1yzzp33.libobj


4) CADDCircle

Bu obje çember çizer.

...

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

Image Modified


8) CADDCurve

...

Code Block
languagexml
themeEclipse
<O N="CAD" T="CADD">
    <O T="CADDDimensionLine">
           <O T="Point" X="0" Y="0" />
           <O T="Point" X="2" Y="0" />
           <O T="Point" X="0" Y="-2" />
    </O>
  <O T="CADDDimensionLine">
           <O T="Point" X="0" Y="0" />
           <O T="Point" X="10" Y="0" />
           <O T="Point" X="0" Y="-4" />
    </O>
  <O T="CADDDimensionLine">
           <O T="Point" X="0" Y="0" />
           <O T="Point" X="24" Y="0" />
           <O T="Point" X="0" Y="-6" />
    </O>
  <O T="CADDDimensionLine">
           <O T="Point" X="0" Y="0" />
           <O T="Point" X="30" Y="0" />
           <O T="Point" X="0" Y="-8" />
    </O>
</O>


Image Modified