TechDraw: Pallinatura

From FreeCAD Documentation
Revision as of 15:55, 23 April 2019 by Renatorivo (talk | contribs) (Created page with "==Limitazioni==")
Other languages:

TechDraw Balloon

Menu location
TechDraw → Balloon
Workbenches
TechDraw
Default shortcut
None
Introduced in version
-
See also
TechDraw Balloon, TechDraw Balloon

Work in Progress

Descrizione

The Balloon tool adds a ...

File:TechDraw Balloon example.png

Balloon ...

Utilizzo

  1. Selezionare la vista a cui si vuole attaccare un pallino...
  2. Premere il pulsante Pallinatura
  3. Alla vista viene aggiunta una bolla che può essere trascinata nella posizione desiderata. Usa CTRL e trascina per spostare la bolla e la freccia.

Limitazioni

Dimension objects are vulnerable to "topological naming" issues. This means that if you modify the 3D geometry the faces and edges of the model may be renamed internally; if a dimension is attached to an edge that is then modified, the dimension may break. In general, it is not possible to keep the projected 2D dimensions synchronized with the actual 3D objects.

Therefore, it is recommended that dimensions be added when the 3D model is no longer being modified.


Properties

Data

  • DatiX: Horizontal position of the balloon bubble relative to the View.
  • DatiY: Vertical position of the balloon bubble relative to the View.

View

  • VistaFont: The name of the font to use for the balloon bubble.
  • VistaFontsize: Dimension text size in mm.

Scripting

See also: TechDraw API and FreeCAD Scripting Basics.

The Balloon tool can be used in macros and from the Python console by using the following functions:

bal1 = FreeCAD.ActiveDocument.addObject('TechDraw::DrawViewBalloon','Balloon')
rc = page.addView(bal1)


Notes