Sketcher: Vincolo Coincidenza di punti

From FreeCAD Documentation
Revision as of 10:37, 7 January 2017 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

Constraint PointOnPoint

Menu location
Sketch → Sketcher constraints → Constrain coincident
Workbenches
Sketcher, PartDesign
Default shortcut
None
Introduced in version
-
See also
Constraint Lock, Constraint Point onto Object


Crea un vincolo di Coincidenza di punti sull'elemento selezionato

Questo strumento di vincolo richiede e accetta come argomento due punti e serve per rendere i due punti coincidenti. (Nel senso di trasformarli in un unico punto.)

Nella pratica è utile quando un profilo è interrotto - per esempio dove due punti di finelinea sono uno accanto all'altro, ma le linee devono essere unite. In questo caso, un vincolo di coincidenza sui rispettivi punti finali chiude la breccia.

This constraint tool takes two points as its argument and serves to make the two points coincident. (Meaning to make them as-one-point).

In practical terms this constraint tool is useful when there is a break in a profile for example - where two lines end near each other and need to be joined - a coincident constraint on their end-points will close the gap.

Utilizzo

Come detto in precedenza, questo strumento richiede due argomenti e entrambi devono essere dei punti.

  1. In primo luogo è necessario evidenziare due punti distinti. (Nota: lo strumento non funziona quando si tenta di selezionare il punto iniziale e quello finale della stessa linea).
  2. Per evidenziare un elemento del disegno, spostare il mouse sopra l'oggetto e fare clic con il pulsante sinistro del mouse.
  3. Un elemento selezionato assume il colore verde.
  4. Elementi successivi possono essere selezionati ripetendo la procedura precedente. NOTA: Non è necessario tenere premuto nessun tasto speciale, tipo Ctrl, per aggiungere elementi del disegno alla selezione multipla.
  5. Dopo evidenziati due punti, cliccare con il tasto sinistro sul vincolo Coincidenza per far coincidere i due punti e sostituirli con un unico punto.

NOTA: Per rendere due punti coincidenti, FreeCAD deve necessariamente spostare uno o entrambi i punti originali.

NOTE: In order to make two points coincident, FreeCAD must necessarily move one, or both, of the original points.

Scripting

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

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

where :

  • Sketch is a sketch object
  • LineFixed is the number of the line, that will not move by applying the constraint
  • PointOfLineFixed is the number of the vertex of the line LineFixed that has to fulfilled the constraint
  • LineMoving is the number of the line, that will move by applying the constraint
  • PointOfLineMoving is the number of the line LineMoving, that has to fulfilled the constraint

The main issue by using this function is to identify correctly the line number and the vertex number of the lines you want to process.

Let us take an example to explain the method to identify correctly the line number and vertex number. Identifying the numbering of a line.

I have drawn three lines as shown in figure 1.

TO BE CONTINUED...