Sketcher ConstrainHorizontal/es: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 41: Line 41:
{{Code|code=Sketch.addConstraint(Sketcher.Constraint('Horizontal', Line))}}
{{Code|code=Sketch.addConstraint(Sketcher.Constraint('Horizontal', Line))}}


The [[Scripting_Sketcher_constraints_in_Python|Scripting Sketcher constraints in Python]] page explains the values which can be used for {{incode|Line}} and contains further examples on how to create constraints from Python scripts.
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.





Revision as of 23:25, 23 January 2021

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.

Constraint Horizontal

Ubicación en el Menú
Croquizador → Restricciones del Croquizador → Restricción Horizontal
Entornos de trabajo
Croquizador, Diseño de Piezas
Atajo de teclado por defecto
Ninguno
Introducido en versión
-
Ver también
Vertical

Descripción

La Restricción Horizontal fuerza a la línea o líneas seleccionadas a ser paralelas al eje horizontal del croquis.

Utilización

Select a line in the sketch by clicking on it.

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 Sketcher scripting page explains the values which can be used for Line and contains further examples on how to create constraints from Python scripts.