Sketcher ConstrainHorizontal スケッチャー

From FreeCAD Documentation
Revision as of 19:47, 23 January 2021 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

This documentation is not finished. Please help and contribute documentation.

GuiCommand model explains how commands should be documented. Browse Category:UnfinishedDocu to see more incomplete pages like this one. See Category:Command Reference for all commands.

See WikiPages to learn about editing the wiki pages, and go to Help FreeCAD to learn about other ways in which you can contribute.

説明

HorizontalConstraintは選択された線または画像の辺がスケッチの水平軸と平行なるように拘束を行います。

使用方法

スケッチ上の線をクリックして選択します。

線が暗緑色に変わります。

Sketcher ConstraintsツールバーのHorizontalConstraintアイコンをクリックするか、スケッチャーワークベンチのSketcherメニューアイテム(あるいはパートデザインワークベンチのPart Designメニューアイテム)にあるSketcher constraintsサブメニューのConstrain horizontallyメニューアイテムを選択してHorizontalConstraintを適用します。すると選択された線がスケッチの水平軸に平行になるように拘束されます。

複数の線を選択することもできます。

上で示したように線を選択して拘束を適用すると、それらがスケッチの水平軸に平行になるように拘束されます。

The line turns dark green.

Apply the Horizontal Constraint by clicking on the Constraint horizontal in the Sketcher Constraints toolbar or by selecting the Constrain horizontally menu item in the Sketcher constraints sub menu of the Sketcher menu item in the Sketcher work bench (or the Part Design menu item of the Part Design work bench). The selected line is constrained to be parallel to the horizontal axis of the sketch.

Multiple lines may be selected

and then applying the constraint as described above, they are constrained to be parallel to the sketch horizontal axis.

Scripting

Sketch.addConstraint(Sketcher.Constraint('Horizontal', Line))

The Scripting Sketcher constraints in Python page explains the values which can be used for Line and contains further examples on how to create constraints from Python scripts.