| Description |
|---|
| 여러 고체의 질량 중심을 계산하고 보여줍니다. Macro version: 0.7.6 Last modified: 2024-07-18 FreeCAD version: 0.19 이상 Author: Schupins, SyProLei |
| Author |
| Schupins, SyProLei |
| Download |
| None |
| Links |
| Macros recipes How to install macros How to customize toolbars |
| Macro Version |
| 0.7.6 |
| Date last modified |
| 2024-07-18 |
| FreeCAD Version(s) |
| 0.19 이상 |
| Default shortcut |
| None |
| See also |
| None |
선택된 물체의 총 질량과 질량 중심의 위치를 제공합니다. 각 물체에 대해 다른 밀도를 선택할 수 있습니다.
Temporary code for external macro link. Do not use this code. This code is used exclusively by Addon Manager. Link for optional manual installation: Macro
# This code is copied instead of the original macro code
# to guide the user to the online download page.
# Use it if the code of the macro is larger than 64 KB and cannot be included in the wiki
# or if the RAW code URL is somewhere else in the wiki.
from PySide import QtGui, QtCore
diag = QtGui.QMessageBox(QtGui.QMessageBox.Information,
"Information",
"This macro must be downloaded from this link\n"
"\n"
"https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/master/Information/CenterOfMass.FCMacro" + "\n"
"\n"
"Quit this window to access the download page")
diag.setWindowFlags(QtCore.Qt.WindowStaysOnTopHint)
diag.setWindowModality(QtCore.Qt.ApplicationModal)
diag.exec_()
import webbrowser
webbrowser.open("https://raw.githubusercontent.com/FreeCAD/FreeCAD-macros/master/Information/CenterOfMass.FCMacro")
깃허브에서 매크로를 내려 받을 수 있습니다. Macro CenterOfMass.FCMacro
이 아이콘 파일을 도구 모음 아이콘으로 사용할 수 있습니다.
포럼 토론: 질량 중심을 계산하는 매크로
버전 / 병합 날짜
0.8.4 / 2025-06-10:
0.8.3 / 2025-01-23:
0.8.0 / 2025-01-06: Thanks to farahats9 for the contribution
0.7.6 / 2024-08-01: 주요 프리캐드 배포 준비
0.7.3 / 2023-09-11:
0.7.0 / 2023-02-13:
0.6.0 / 2022-08-27:
0.5.8 / 2022-05-31:
0.5.0 / 2022-04-07: s-quirin(Saarland University의 SyProLei 프로젝트)에 의한 완전한 재작성
0.4.1 / 2019-05-25: 공식 저장소에서 이전 요구 사항 및 GUI를 사용할 수 있는 마지막 업데이트
0.1.2 / 2018-11-10: chupins의 초기 버전이 공식 저장소에 병합됨