Sketcher ConstrainHorizontal/ja: Difference between revisions

From FreeCAD Documentation
No edit summary
(Updating to match new version of source page)
(21 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
<languages/>
{{GuiCommand/jp|Name=Sketcher ConstrainHorizontal|Workbenches=[[Sketcher Workbench/jp|スケッチャー]], [[PartDesign Workbench/jp|パートデザイン]]|MenuLocation=Sketch → Sketcher constraints → Constrain horizontally|SeeAlso=[[Constraint Vertical/jp|Constraint Vertical]]}}


{{Docnav
|[[Sketcher_ConstrainHorVer|Horizontal/Vertical]]
|[[Sketcher_ConstrainVertical|Vertical]]
|[[Sketcher_Workbench|Sketcher]]
|IconL=Sketcher_ConstrainHorVer.svg
|IconR=Sketcher_ConstrainVertical.svg
|IconC=Workbench_Sketcher.svg
}}

<div class="mw-translate-fuzzy">
{{GuiCommand/ja
|Name=Sketcher ConstrainHorizontal
|Name/ja=Sketcher ConstrainHorizontal
|Workbenches=[[Sketcher Workbench/ja|スケッチャー]], [[PartDesign Workbench/ja|パートデザイン]]
|MenuLocation=Sketch → Sketcher constraints → Constrain horizontally
|SeeAlso=[[Constraint Vertical/ja|Constraint Vertical]]
}}
</div>

<span id="Description"></span>
==説明==
==説明==


<div class="mw-translate-fuzzy">
The Horizontal Constraint forces a selected line or lines in the sketch to be parallel to the horizontal axis of the sketch.
HorizontalConstraintは選択された線または画像の辺がスケッチの水平軸と平行なるように拘束を行います。
</div>


{{Version|0.22}}: In most cases it is advisable to use the combined [[Sketcher_ConstrainHorVer|Sketcher ConstrainHorVer]] command instead.
==How to Use==


<span id="Usage"></span>
<div class="mw-translate-fuzzy">
==使用方法==
</div>

<div class="mw-translate-fuzzy">
[[File:HorizontalConstraint1.png|left|256px]]
[[File:HorizontalConstraint1.png|left|256px]]
スケッチ上の線をクリックして選択します。
Select a line in the sketch by clicking on it.
<br style="clear: both" />
<br style="clear: both" />
[[File:HorizontalConstraint2.png|left|256px]]
[[File:HorizontalConstraint2.png|left|256px]]
線が暗緑色に変わります。
The line turns dark green.
<br style="clear: both" />
<br style="clear: both" />
[[File:HorizontalConstraint3.png|left|256px]]
[[File:HorizontalConstraint3.png|left|256px]]
Sketcher ConstraintsツールバーのHorizontalConstraintアイコン[[File:Constraint_Horizontal.png|16px]]をクリックするか、スケッチャーワークベンチのSketcherメニューアイテム(あるいはパートデザインワークベンチのPart Designメニューアイテム)にあるSketcher constraintsサブメニューのConstrain horizontallyメニューアイテムを選択してHorizontalConstraintを適用します。すると選択された線がスケッチの水平軸に平行になるように拘束されます。
Apply the Horizontal Constraint by clicking on the Horizontal Constraint icon [[File:Constraint_Horizontal.png|16px]] 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.
<br style="clear: both" />
<br style="clear: both" />
[[File:HorizontalConstraint4.png|left|256px]]
[[File:HorizontalConstraint4.png|left|256px]]
複数の線を選択することもできます。
Multiple lines may be selected,
<br style="clear: both" />
<br style="clear: both" />
[[File:HorizontalConstraint5.png|left|256px]]
[[File:HorizontalConstraint5.png|left|256px]]
上で示したように線を選択して拘束を適用すると、それらがスケッチの水平軸に平行になるように拘束されます。
and then applying the constraint as described above, they are constrained to be parallel to the sketch horizontal axis.
<br style="clear: both" />
<br style="clear: both" />
</div>


== Scripting ==

{{Code|code=Sketch.addConstraint(Sketcher.Constraint('Horizontal', Line))}}

The [[Sketcher_scripting|Sketcher scripting]] page explains the values which can be used for {{incode|Line}} and contains further examples on how to create constraints from Python scripts.


<div class="mw-translate-fuzzy">
[[Category:Sketcher]]
[[Category:Sketcher]]
</div>

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

Revision as of 09:24, 20 January 2024

Sketcher ConstrainHorizontal

メニューの場所
Sketch → Sketcher constraints → Constrain horizontally
ワークベンチ
スケッチャー, パートデザイン
デフォルトのショートカット
None
バージョンで導入
-
も参照してください
Constraint Vertical

説明

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

introduced in version 0.22: In most cases it is advisable to use the combined Sketcher ConstrainHorVer command instead.

使用方法

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

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

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

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

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

Scripting

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

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