Arch API/tr: Difference between revisions

From FreeCAD Documentation
(Created page with "Yapı API")
 
(Updating to match new version of source page)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{VeryImportantMessage|(November 2018) The Arch API is listed in the [https://www.freecadweb.org/api autogenerated API documentation].}}
{{VeryImportantMessage|(Kasım 2018) YAPI API, [https://www.freecadweb.org/api otomatikleştirilmiş API belgelerinde] listelenmiştir.}}


<div class="mw-translate-fuzzy">
The functions of the API are part of the [[Arch Workbench]] and can be used in [[macros]] and from the [[Python]] console once the {{incode|Arch}} module has been imported. The [[Reinforcement Addon]] has its own [[Reinforcement API]].
API'nin işlevleri [[Arch Workbench/tr|Yapı tezgahın]] 'ın bir parçasıdır ve {{incode|Arch}} modülü alındıktan sonra [[macros/tr|makrolar]] ve [[Python]] konsolundan kullanılabilir. [[Reinforcement Addon|Takviye Eklentisi]] kendi [[Reinforcement API]] 'ye sahiptir.
</div>


Örnek:
Example:
{{Code|code=
{{Code|code=
import FreeCAD, Draft, Arch
import FreeCAD, Draft, Arch
Line 15: Line 17:
}}
}}


{{Arch Tools navi}}
{{Arch Tools navi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}
[[Category:API]]
[[Category:Poweruser Documentation]]
[[Category:API{{#translation:}}]]
[[Category:Poweruser Documentation{{#translation:}}]]

Latest revision as of 21:36, 9 March 2024

(Kasım 2018) YAPI API, otomatikleştirilmiş API belgelerinde listelenmiştir.

API'nin işlevleri Yapı tezgahın 'ın bir parçasıdır ve Arch modülü alındıktan sonra makrolar ve Python konsolundan kullanılabilir. Takviye Eklentisi kendi Reinforcement API 'ye sahiptir.

Örnek:

import FreeCAD, Draft, Arch

p1 = FreeCAD.Vector(0, 0, 0)
p2 = FreeCAD.Vector(2000, 0, 0)
baseline = Draft.makeLine(p1, p2)

Arch.makeWall(baseline, length=None, width=200, height=2000)