Skip to content

Latest commit

 

History

History
60 lines (38 loc) · 4.14 KB

Sketcher_ConstrainInternalAlignment.md

File metadata and controls

60 lines (38 loc) · 4.14 KB


Sketcher ConstrainInternalAlignment

Description

The InternalAlignment constraint aligns lines and points to particular places of a complex sketcher element (there is just one "complex" element so far, the Ellipse).

For points to positions of ellipse's foci.

The constraint is for experienced users because its usage is not as straight forward as for the other constraints. There is a helper tool called Show/Hide internal geometry to avoid the need to invoke the InternalAlignment constraint manually.

Operation on Ellipse

  1. Select elements to be aligned and an ellipse. The ellipse must be selected last. Accepted are up to two lines and up to two points.
  2. Invoking the constraint can be done several ways:
    • Pressing the Constrain internal alignment button in the toolbar.
    • Using the Ctrl + A keyboard shortcut.
    • Using the Sketch → Sketcher constraints → Constrain InternalAlignment entry from the top menu.

The first line that was selected gets aligned to become ellipse's major diameter (but if it is not occupied already by another line, otherwise it will become minor diameter). The second line is aligned to become minor radius. The lines are automatically switched to construction.

Likewise, the first point is constrained to become the first unoccupied focus, and the second point goes to the other focus.

Note: By default new ellipses have an internal construction geometry. When this defines the ellipse already completely, you cannot directly use the InternalAlignment constraint. You first need to delete the construction geometry or parts of it. In case you don't see the construction geometry, select the ellipse and use the tool Show/Hide internal geometry to make it visible.

Scripting

Sketch.addConstraint(Sketcher.Constraint('InternalAlignment:EllipseMajorDiameter', index_of_line, index_of_ellipse))
Sketch.addConstraint(Sketcher.Constraint('InternalAlignment:EllipseMinorDiameter', index_of_line, index_of_ellipse))
Sketch.addConstraint(Sketcher.Constraint('InternalAlignment:EllipseFocus1', index_of_point, 1, index_of_ellipse))
Sketch.addConstraint(Sketcher.Constraint('InternalAlignment:EllipseFocus2', index_of_point, 1, index_of_ellipse))
``` Remarks:

:   
    `Sketch`is a sketch object.

:   Number `1` in the focus calls stands for starting point of a point element (it is ignored).

:   The `index_of_point` argument must be a point, it cannot be used to e.g. denote an edge\'s extremity.

The [Sketcher scripting](Sketcher_scripting.md) page explains the values which can be used for `index_of_line`, `index_of_point` and `index_of_ellipse` and contains further examples on how to create constraints from Python scripts.




 {{Sketcher Tools navi}}

---
[documentation index](../README.md) > [Sketcher](Sketcher_Workbench.md) > Sketcher ConstrainInternalAlignment