Std Refresh/ko: Difference between revisions

From FreeCAD Documentation
(Created page with "'''표준 새로 고침(Std Refresh)''' 명령은 활성 문서를 다시 계산합니다. 문서를 다시 계산할 필요가 없으면 이 명령은 비활성화됩니다.")
(Updating to match new version of source page)
 
(13 intermediate revisions by 2 users not shown)
Line 18: Line 18:
}}
}}


<span id="Description"></span>
==설명==
==설명==


'''표준 새로 고침(Std Refresh)''' 명령은 활성 문서를 다시 계산합니다. 문서를 다시 계산할 필요가 없으면 이 명령은 비활성화됩니다.
'''표준 새로 고침(Std Refresh)''' 명령은 활성 문서를 다시 계산합니다. 문서를 다시 계산할 필요가 없으면 이 명령은 비활성화됩니다.


==Usage==
<span id="Usage"></span>
==용법==


# 이 명령을 실행하는 방법은 여러 가지입니다:
# There are several ways to invoke the command:
#* Press the {{Button|[[Image:Std_Refresh.svg|16px]] [[Std_Refresh|Std Refresh]]}} button.
#* {{Button|[[Image:Std_Refresh.svg|16px]] [[Std_Refresh/ko|표준 다시 계산]]}} 버튼을 누릅니다.
#* Select the {{MenuCommand|Edit → [[Image:Std_Refresh.svg|16px]] Refresh}} option from the menu.
#* 메뉴에서 {{MenuCommand|편집 → [[Image:Std_Refresh.svg|16px]] 새로 고침}} 옵션을 선택합니다.
#* Use the keyboard shortcut: {{KEY|F5}}.
#* 단축키를 사용합니다: {{KEY|F5}}.


==Options==
<span id="Options"></span>
==선택 사항==


<div class="mw-translate-fuzzy">
* To force a recompute select the document or one or more objects in the [[Tree_view|Tree view]], choose the {{MenuCommand|Mark to recompute}} option from the context menu, and invoke the command.
* 다시 계산이 강제로 이루어지게 하려면 [[Tree_view/ko|트리 보기]]에서 문서나 하나 이상의 개체를 선택한 뒤 상황에 맞는 메뉴에서 {{MenuCommand|다시 계산 필요}} 옵션을 선택하여 명령을 실행합니다.
* For objects, but not for documents, you can also choose {{MenuCommand|Recompute object}} from the same context menu ({{Version|0.19}}).
* 문서가 아닌 객체의 경우 상황에 맞는 메뉴에서 {{MenuCommand|개체 다시 계산}} 옵션을 선택할 수도 있습니다({{Version/ko|0.19}}).
</div>


==Notes==
<span id="Notes"></span>
==비고==


* For a macro that will recompute the active document see: [[Macro_ForceRecompute|Macro ForceRecompute]].
* 활성 문서를 다시 계산하는 매크로는 다음을 참조하십시오: [[Macro_ForceRecompute|Macro ForceRecompute]].


==Scripting==
<span id="Scripting"></span>
==스크립트==


{{Emphasis|See also:}} [[FreeCAD_Scripting_Basics|FreeCAD Scripting Basics]].
{{Emphasis|참조:}} [[FreeCAD_Scripting_Basics/ko|FreeCAD 스크립트 기초]].


To recompute a document use the {{incode|recompute}} method of the document object.
문서를 다시 계산하려면 문서 객체의 {{incode|recompute}} 메소드를 사용하십시오.


{{Code|code=
{{Code|code=
Line 52: Line 59:


{{Docnav
{{Docnav
|[[Std_DuplicateSelection|DuplicateSelection]]
|[[Std_DuplicateSelection/ko|개체 복제]]
|[[Std_BoxSelection|BoxSelection]]
|[[Std_BoxSelection/ko|개체 선택]]
|[[Std_Edit_Menu|Std Edit Menu]]
|[[Std_Edit_Menu/ko|표준 편집 메뉴]]
|IconL=Std_DuplicateSelection.svg
|IconL=Std_DuplicateSelection.svg
|IconR=Std_BoxSelection.svg
|IconR=Std_BoxSelection.svg

Latest revision as of 15:40, 20 May 2023

표준 새로 고침

메뉴 위치
편집 → 새로 고침
작업대
모두
기본 단축키
F5
도입 버전
-
참조
없음

설명

표준 새로 고침(Std Refresh) 명령은 활성 문서를 다시 계산합니다. 문서를 다시 계산할 필요가 없으면 이 명령은 비활성화됩니다.

용법

  1. 이 명령을 실행하는 방법은 여러 가지입니다:
    • 표준 다시 계산 버튼을 누릅니다.
    • 메뉴에서 편집 → 새로 고침 옵션을 선택합니다.
    • 단축키를 사용합니다: F5.

선택 사항

  • 다시 계산이 강제로 이루어지게 하려면 트리 보기에서 문서나 하나 이상의 개체를 선택한 뒤 상황에 맞는 메뉴에서 다시 계산 필요 옵션을 선택하여 명령을 실행합니다.
  • 문서가 아닌 객체의 경우 상황에 맞는 메뉴에서 개체 다시 계산 옵션을 선택할 수도 있습니다(0.19 버전부터 도입).

비고

  • 활성 문서를 다시 계산하는 매크로는 다음을 참조하십시오: Macro ForceRecompute.

스크립트

참조: FreeCAD 스크립트 기초.

문서를 다시 계산하려면 문서 객체의 recompute 메소드를 사용하십시오.

import FreeCAD

doc = FreeCAD.newDocument()
doc.recompute()