Developer hub/ko: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
No edit summary
 
(17 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{TOCright}}

[[Image:Crystal_Clear_app_tutorials.png|right|150]]
[[Image:Crystal_Clear_app_tutorials.png|64px]]
----


이곳은 FreeCAD 개발에 기여하고 싶다면 올 장소입니다.
이곳은 FreeCAD 개발에 기여하고 싶다면 올 장소입니다.
Line 7: Line 8:
These pages are in the early stage of development. If you can't find the information you are looking for, or have found useful information somewhere we have not linked to, then please leave a comment on the [http://forum.freecadweb.org/index.php?sid=5f84150e79db8842e277b042077097ff forum] and someone will look into it (or, if you are feeling bold, why not edit this page directly!).
These pages are in the early stage of development. If you can't find the information you are looking for, or have found useful information somewhere we have not linked to, then please leave a comment on the [http://forum.freecadweb.org/index.php?sid=5f84150e79db8842e277b042077097ff forum] and someone will look into it (or, if you are feeling bold, why not edit this page directly!).


== Developer Documentation ==


<div class="mw-translate-fuzzy">
== 개발자 문서 ==
== 개발자 문서 ==
The developer documentation comprises the following sections:
The developer documentation comprises the following sections:
</div>


=== Compiling FreeCAD ===

<div class="mw-translate-fuzzy">
=== 여러분 스스로: FreeCAD 컴파일 ===
=== 여러분 스스로: FreeCAD 컴파일 ===
* [[Source code management]]
* [[Source code management]]
* [[Tracker|Find assistance]] when you have a problem or think you may have found a bug
* [[Tracker|Find assistance]] when you have a problem or think you may have found a bug
* [[CompileOnWindows|Compiling on Windows]]
* [[Compile_on_Windows|Compiling on Windows]]
* [[CompileOnUnix|Compiling on Unix]]
* [[Compile_on_Linux|Compiling on Unix]]
* [[CompileOnMac|Compiling on Mac OS X]]
* [[Compile_on_MacOS|Compiling on Mac OS X]]
* [[Licence|Licence details]] about the FreeCAD licences
* [[License|License details]] about the FreeCAD licences
* [[Third Party Libraries]]
* [[Third Party Libraries]]
* [[Third Party Tools]]
* [[Third Party Tools]]
* [[Start up and Configuration]]
* [[Start up and Configuration]]
* [[Source documentation]]
* [[Source documentation]]
</div>


=== Packaging ===

[[Packaging|Packaging]] consists in taking the compiled binaries and Python source files of FreeCAD, and distributing them for use in a particular system.

* [[Linux_packaging|Linux packaging]]
** [[Debian_development|Debian development]]
** [[Debian_Unstable|Debian Unstable]]
** [[Git_buildpackage|Git buildpackage]]
* [[Windows_packaging|Windows packaging]]
* [[MacOS_packaging|MacOS packaging]]

=== Build Support Tools ===

<div class="mw-translate-fuzzy">
=== 지원 도구 만들기 ===
=== 지원 도구 만들기 ===
* The [[FreeCAD Build Tool]]
* The [[FreeCAD Build Tool]]
** [[Module_Creation|Adding an application module]] to FreeCAD
** [[Workbench_creation|Adding an application module]] to FreeCAD
* [[Debugging]] FreeCAD
* [[Debugging]] FreeCAD
* [[Testing]] FreeCAD
* [[Testing]] FreeCAD
* [[Compiling (Speeding up)]] FreeCAD
* [[Compiling (Speeding up)]] FreeCAD
* [[Continuous Integration]]
* [[Continuous Integration]]
</div>

=== Modifying FreeCAD ===


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 44: Line 69:
</div>
</div>


<div class="mw-translate-fuzzy">
* [[Translating an external workbench]]
</div>

=== Module developer's guide ===

<div class="mw-translate-fuzzy">
=== 모둘 개발자 가이드 ===
=== 모둘 개발자 가이드 ===
[https://github.com/qingfengxia/FreeCAD_Mod_Dev_Guide FreeCAD Mod Dev Guide]: This is an ebook under writing on github, please fork and send pull request to contribute.
[https://github.com/qingfengxia/FreeCAD_Mod_Dev_Guide FreeCAD Mod Dev Guide]: This is an ebook under writing on github, please fork and send pull request to contribute.
</div>


챕터:
챕터:
Line 61: Line 94:
Latest pdf preview can be downoaded from [https://github.com/qingfengxia/FreeCAD_Mod_Dev_Guide/tree/master/pdf pdf folder] of this git repo
Latest pdf preview can be downoaded from [https://github.com/qingfengxia/FreeCAD_Mod_Dev_Guide/tree/master/pdf pdf folder] of this git repo


=== Internals ===
* [[Translating an external workbench]]


<span id="OpenCascade_Documentation"></span>
<div class="mw-translate-fuzzy">
=== OpenCascade Documentation ===
=== OpenCascade Documentation ===
</div>


OpenCascade is a software development platform for 3D surface and solid modeling, CAD data exchange, and visualization, mostly in the form of C++ libraries.
OpenCascade is a software development platform for 3D surface and solid modeling, CAD data exchange, and visualization, mostly in the form of C++ libraries.
Line 72: Line 108:
* [http://opencascade.wikidot.com The openCascade wiki] (currently containing ?? Chinese spam)
* [http://opencascade.wikidot.com The openCascade wiki] (currently containing ?? Chinese spam)


==== File format ====

[[File_Format_FCStd|File Format FCStd]]. The files created with FreeCAD are {{incode|.zip}} files that include the [https://en.wikipedia.org/wiki/Boundary_representation BREP] geometry, as well as XML data that describes the document.

==== Sketcher solver ====

* [https://forum.freecadweb.org/viewtopic.php?f=10&t=36355 Sketcher Solver Architecture Booklet] (forum thread), [https://github.com/abdullahtahiriyo/FreeCADBooks/tree/master/FreeCAD_Solver_Architecture source] in GitHub.
* [https://github.com/FreeCAD/FreeCAD/blob/master/src/Mod/Sketcher/App/planegcs/ PlaneGCS solver] in the FreeCAD source code; important files are [https://github.com/FreeCAD/FreeCAD/blob/master/src/Mod/Sketcher/App/planegcs/GCS.cpp GCS.cpp] and [https://github.com/FreeCAD/FreeCAD/blob/master/src/Mod/Sketcher/App/planegcs/SubSystem.cpp SubSystem.cpp].
* [https://forum.freecadweb.org/viewtopic.php?f=9&t=29192 Recent Several Sketcher improvements].

The sketcher solver isn't perfect, as there are some issues with numerical precision when using large values, see [https://forum.freecadweb.org/viewtopic.php?f=10&t=40502 Adventure of fixing sketcher solver for large sketches].

The development of a new solver architecture could improve the way the solver is used both in the [[Sketcher Workbench|Sketcher Workbench]], and for assembly of 3D bodies. See [https://forum.freecadweb.org/viewtopic.php?f=20&t=40525 Reimplementing constraint solver].

== Roadmap ==

<div class="mw-translate-fuzzy">
== 로드맵 ==
== 로드맵 ==
FreeCAD, though usable in certain areas, is at the beginning of a long way into the CAD mainstream. There is still a lot to do
FreeCAD, though usable in certain areas, is at the beginning of a long way into the CAD mainstream. There is still a lot to do
to reach a state where we can compete with commercial software.
to reach a state where we can compete with commercial software.
</div>


[[FreeCAD_1.0_Development_Cycle|FreeCAD 1.0 Development Cycle]]

== Community ==

* [ircs://irc.libera.chat:6697/freecad IRC channel] ,synchronized with [https://gitter.im/FreeCAD/FreeCAD gitter channel]
* [https://forum.freecad.org/viewforum.php?f=6 Development forum]

<div class="mw-translate-fuzzy">
* [[Development roadmap]]
* [[Development roadmap]]
</div>


<div class="mw-translate-fuzzy">
== Credits ==
== Credits ==
[[Contributors]]
[[Contributors]]
</div>


{{Userdocnavi{{#translation:}}}}
[[Category:Hubs]]
[[Category:Developer Documentation]]
[[Category:Hubs{{#translation:}}]]
[[Category:Developer Documentation{{#translation:}}]]

Latest revision as of 16:31, 4 April 2024


이곳은 FreeCAD 개발에 기여하고 싶다면 올 장소입니다.

These pages are in the early stage of development. If you can't find the information you are looking for, or have found useful information somewhere we have not linked to, then please leave a comment on the forum and someone will look into it (or, if you are feeling bold, why not edit this page directly!).

Developer Documentation

개발자 문서

The developer documentation comprises the following sections:

Compiling FreeCAD

여러분 스스로: FreeCAD 컴파일

Packaging

Packaging consists in taking the compiled binaries and Python source files of FreeCAD, and distributing them for use in a particular system.

Build Support Tools

Modifying FreeCAD

FreeCAD 바꾸기

Module developer's guide

모둘 개발자 가이드

FreeCAD Mod Dev Guide: This is an ebook under writing on github, please fork and send pull request to contribute.

챕터:

  • Overview and Software Architecture
  • Source code structure
  • Base and App module
  • Gui module
  • Python wrapping
  • Modular design
  • Fem module source analysis (mixed C++ and Python)
  • Development of CFD Module (pure Python)
  • Module testing and debugging
  • Contribute code with git

Latest pdf preview can be downoaded from pdf folder of this git repo

Internals

OpenCascade Documentation

OpenCascade is a software development platform for 3D surface and solid modeling, CAD data exchange, and visualization, mostly in the form of C++ libraries.

File format

File Format FCStd. The files created with FreeCAD are .zip files that include the BREP geometry, as well as XML data that describes the document.

Sketcher solver

The sketcher solver isn't perfect, as there are some issues with numerical precision when using large values, see Adventure of fixing sketcher solver for large sketches.

The development of a new solver architecture could improve the way the solver is used both in the Sketcher Workbench, and for assembly of 3D bodies. See Reimplementing constraint solver.

Roadmap

로드맵

FreeCAD, though usable in certain areas, is at the beginning of a long way into the CAD mainstream. There is still a lot to do to reach a state where we can compete with commercial software.

FreeCAD 1.0 Development Cycle

Community

Credits

Contributors