Sketcher ConstrainPointOnObject/es: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>
<br />


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 19: Line 18:
The constraint can be created from macros and from the python console by using the following command:
The constraint can be created from macros and from the python console by using the following command:


{{Clear}}
{{clear}}
{{Code|code= Sketch.addConstraint(Sketcher.Constraint('PointOnObject',LineMoving,PointOfLineMoving,LineFixed))}}
{{Code|code= Sketch.addConstraint(Sketcher.Constraint('PointOnObject',LineMoving,PointOfLineMoving,LineFixed))}}



Revision as of 21:54, 6 October 2018

Constraint PointOnObject

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

Descrición

Usage

Note : The order you select the line and point does not matter. The point will always move to line. The line remains fixed.

Scripting

The constraint can be created from macros and from the python console by using the following command:

Sketch.addConstraint(Sketcher.Constraint('PointOnObject',LineMoving,PointOfLineMoving,LineFixed))

where :

  • Sketch is a sketch object
  • LineMoving is the number that designates the line, which contains the point that has to be moved onto the LineFixed (The line which is fixed)
  • PointOfLineMoving is the number of the vertex of line LineMoving, that has to be moved onto the LineFixed
  • LinedFixed is the number of the line to be affixed onto the point PointOfLineMoving

How to identify the number that designates lines and points ? Please refer to the scripting part of Sketcher ConstrainCoincident.