Std Refresh/ko: Difference between revisions

From FreeCAD Documentation
(Created page with "==선택 사항==")
(Created page with "* 다시 계산이 강제로 이루어지게 하려면 트리 보기에서 문서나 하나 이상의 개체를 선택한 뒤 상황에 맞는 메뉴에서 {{...")
Line 31: Line 31:
==선택 사항==
==선택 사항==


* 다시 계산이 강제로 이루어지게 하려면 [[Tree_view/ko|트리 보기]]에서 문서나 하나 이상의 개체를 선택한 뒤 상황에 맞는 메뉴에서 {{MenuCommand|다시 계산 필요}} 옵션을 선택하여 명령을 실행합니다.
* 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.
* For objects, but not for documents, you can also choose {{MenuCommand|Recompute object}} from the same context menu ({{Version|0.19}}).
* 문서가 아닌 객체의 경우 상황에 맞는 메뉴에서 {{MenuCommand|개체 다시 계산}} 옵션을 선택할 수도 있습니다({{Version|0.19}}).


==Notes==
==Notes==

Revision as of 01:58, 30 December 2020

표준 새로 고침

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

설명

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

용법

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

선택 사항

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

Notes

Scripting

See also: FreeCAD Scripting Basics.

To recompute a document use the recompute method of the document object.

import FreeCAD

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