Developer hub/ru: Difference between revisions

From FreeCAD Documentation
(Created page with "* Understanding The FreeCAD source code * Submitting patches * Add Features to FreeCAD or a...")
(Updating to match new version of source page)
(17 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
[[Image:Crystal_Clear_app_tutorials.png|64px]]

----
[[Image:Crystal_Clear_app_tutorials.png|right|150]]
__NOTOC__


Это раздел для тех, кто хочет принять участие в разработке FreeCAD.
Это раздел для тех, кто хочет принять участие в разработке FreeCAD.
Line 38: Line 39:
=== Инструменты Поддержки Сборки ===
=== Инструменты Поддержки Сборки ===


<div class="mw-translate-fuzzy">
* The [[FreeCAD Build Tool/ru|Инструметы сборки FreeCAD]]
* The [[FreeCAD Build Tool/ru|Инструметы сборки FreeCAD]]
** [[Module_Creation/ru|Создание Модулей]] в FreeCAD
** [[Module_Creation/ru|Создание Модулей]] в FreeCAD
Line 44: Line 46:
* [[Compiling (Speeding up)/ru|Компиляция FreeCAD (способы ускорения)]]
* [[Compiling (Speeding up)/ru|Компиляция FreeCAD (способы ускорения)]]
* [[Continuous Integration/ru|(CI) Непрерывная Интеграция]]
* [[Continuous Integration/ru|(CI) Непрерывная Интеграция]]
</div>


=== Модифицирование FreeCAD ===
=== Модифицирование FreeCAD ===


* Understanding [[The FreeCAD source code/ru|The FreeCAD source code]]
* Объяснение структуры [[The FreeCAD source code/ru|исходного кода FreeCAD]]
* [[Tracker/ru#Отправка патчей|Отправка патчей]]
* [[Tracker#Submitting_patches/ru|Submitting patches]]
* Add [[Gui Command/ru|Features]] to FreeCAD or a Workbench
* Добавление [[Gui Command/ru|особенностей]] в FreeCAD или в Верстак
* [[Branding/ru|Branding]] or ''how to give FreeCAD a unique look''
* [[Branding/ru|Брендинг]] или ''как придать FreeCAD уникальный вид''
* [[Artwork/ru|Иллюстрации]], которые мы создали для FreeCAD и которые вы можете свободно использовать повторно
* [[Artwork/ru|Artwork]] we made for FreeCAD, that you can freely reuse
* [[Artwork_Guidelines/ru|Artwork guidelines]] standards for icons
* [[Artwork_Guidelines/ru|Руководство по оформлению]] "стандарты" для иконок
* [[Localisation/ru|Translating FreeCAD]]
* [[Localisation/ru|Локализация и Перевод FreeCAD]]
* [[Extra python modules/ru|Extra python modules]], or ''how to extend python functionality within FreeCAD''
* [[Extra python modules/ru|Дополнительные модули Python]], или ''как как разширить возможности python внутри FreeCAD''
* [[Google Summer of Code/ru|Google Summer of Code]] get involved via Google's student support program
* [[Google Summer of Code|Google Summer of Code]] для тех кто хочет принять участие в программе поддержки студентов Google
* [[Fine-tuning/ru|Тонкая настройка]] содержит информацию о различных параметрах и переключателях параметров, которые могут помоч устранить некоторые проблемы
* [[Fine-tuning/ru|Fine-tuning]] shows different options and parameter switches that can overcome problems
* [[Wrapping_a_Cplusplus_class_in_Python/ru|Wrapping a C++ class in Python]] shows how to create the Python wrapper for a C++ class
* [[Wrapping_a_Cplusplus_class_in_Python/ru|Обертывание C++ класса в Python]] содержит информацию о том, как создать Python обертку для C++ класса


* [[Translating an external workbench|Translating an external workbench]]
* [[Translating an external workbench/ru|Перевод внешних верстаков]]


=== Руководство для разработчика модуля ===
=== Module developer's guide ===


[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.
Line 79: Line 82:
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 ===


==== OpenCascade Documentation ====
==== OpenCascade Documentation ====
Line 90: Line 93:
* [http://opencascade.wikidot.com The openCascade wiki] (currently containing ?? Chinese spam)
* [http://opencascade.wikidot.com The openCascade wiki] (currently containing ?? Chinese spam)


==== File format ====
==== Про формат файла ====


<div class="mw-translate-fuzzy">
[[File_Format_FCStd|File Format FCStd]]. The files created with FreeCAD are {{incode|.zip}} files that include the BREP geometry, as well as XML data that describes the document.
[[File_Format_FCStd|Формат файла FCStd]]. Файлы, созданные с помощью FreeCAD, являются {{incode|.zip}} файлами, включающими в себя BREP геометрию, а также XML-данные, описывающие документ.
</div>


==== Sketcher solver ====
==== Решатель Эскизов (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://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.
Line 104: Line 109:
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].
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 ==


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
Line 111: Line 116:
[[0.20_Development_Cycle|0.20 Development Cycle]]
[[0.20_Development_Cycle|0.20 Development Cycle]]


== Community ==
== Сообщество ==


* [irc://chat.freenode.net/freecad IRC channel] ,synchronized with [https://gitter.im/FreeCAD/FreeCAD gitter channel]
* [irc://chat.freenode.net/freecad IRC channel] ,synchronized with [https://gitter.im/FreeCAD/FreeCAD gitter channel]
Line 118: Line 123:
* [[Development roadmap|Development roadmap]]
* [[Development roadmap|Development roadmap]]


== Credits ==
== Авторы ==
[[Contributors|Contributors]]
[[Contributors/ru|Участники проекта]]


{{Userdocnavi{{#translation:}}}}
{{Userdocnavi{{#translation:}}}}

Revision as of 10:40, 22 January 2022



Это раздел для тех, кто хочет принять участие в разработке FreeCAD.

Этот раздел находятся в стадии разработки. Если вы не можете найти информацию, которую ищете, или нашли полезную информацию, на которую мы не сослались, пожалуйста, оставьте комментарий на форуме и кто-нибудь заглянет в него (или, если вы уверены в своих знаниях, почему бы не отредактировать эту страницу самостоятельно!).

Документация для Разработчиков

Документация для разработчиков включает в себя следующие разделы:

Компиляция FreeCAD

Упаковывание

Упаковка заключается в том, чтобы взять скомпилированные двоичные файлы и исходные файлы Python FreeCAD и распространить их для использования в определенной системе.

Инструменты Поддержки Сборки

Модифицирование FreeCAD

Руководство для разработчика модуля

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

Chapters:

  • 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

Внутренние устройство

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.

Про формат файла

Формат файла FCStd. Файлы, созданные с помощью FreeCAD, являются .zip файлами, включающими в себя BREP геометрию, а также XML-данные, описывающие документ.

Решатель Эскизов (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.

Дорожная карта проекта

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.

0.20 Development Cycle

Сообщество

Авторы

Участники проекта