Draft ShapeString/es: Difference between revisions

From FreeCAD Documentation
(Created page with "==Como utilizar==")
(Created page with "# Presiona el boton {{KEY|Image:Draft_ShapeString16.png Draft Shape from text ...}} o presiona la tecla {{KEY|S}} then {{KEY|S}} # Cliquea en un punt...")
Line 10: Line 10:
==Como utilizar==
==Como utilizar==


# Press the {{KEY|[[Image:Draft_ShapeString16.png]] [[Draft_ShapeString|Draft Shape from text ...]]}} button, or press {{KEY|S}} then {{KEY|S}} keys
# Presiona el boton {{KEY|[[Image:Draft_ShapeString16.png]] [[Draft_ShapeString|Draft Shape from text ...]]}} o presiona la tecla {{KEY|S}} then {{KEY|S}}
# Click a point on the 3D view, or type a [[Draft_Coordinates|coordinate]]
# Cliquea en un punto sobre la vista 3D o escribe una coordenada [[Draft_Coordinates|coordenada]]
# Enter the desired text, press {{KEY|ENTER}}
# Ingresa el texto deseado y presiona {{KEY|ENTER}}
# Enter the desired size, press {{KEY|ENTER}}
# Ingresa el tamaño deseado y presiona {{KEY|ENTER}}
# Enter the desired tracking, press {{KEY|ENTER}}
# Ingresa la trayectoria deseada y presiona {{KEY|ENTER}}
# Press {{KEY|ENTER}} to accept the displayed font file, or,
# Presiona {{KEY|ENTER}} para aceptar el archivo fuente mostrado ó
# Press {{KEY|...}} to select a font file.
# Presiona {{KEY|...}} para seleccionar el archivo fuente.


==Options==
==Options==

Revision as of 21:10, 1 April 2018

Draft ShapeString/es

Ubicación en el Menú
Borrador -> Bosquejar forma de cadena
Entornos de trabajo
Borrador, Arquitectura
Atajo de teclado por defecto
S S
Introducido en versión
-
Ver también
Ninguno

Descripción

La herramienta forma de cadena, inserta una forma compuesta representando una cadena de texto a un punto dado en el actual documento. Altura, trayectoria y fuente pueden ser definidas.

Como utilizar

  1. Presiona el boton Draft Shape from text ... o presiona la tecla S then S
  2. Cliquea en un punto sobre la vista 3D o escribe una coordenada coordenada
  3. Ingresa el texto deseado y presiona ENTER
  4. Ingresa el tamaño deseado y presiona ENTER
  5. Ingresa la trayectoria deseada y presiona ENTER
  6. Presiona ENTER para aceptar el archivo fuente mostrado ó
  7. Presiona ... para seleccionar el archivo fuente.

Options

  • To enter coordinates manually, simply enter the numbers, then press ENTER between each X, Y and Z component.
  • Pressing ESC will cancel the operation.
  • You can set a default font file in Draft/Prefences.

Properties

  • DatosPosition: The base point of the compound shape
  • DatosString: The contents of the text string
  • DatosSize: The height of the letters in FC units
  • DatosTracking: The inter-character spacing in FC units
  • DatosFont File: The font definition file used to draw the string

Scripting

The ShapeString tool can by used in macros and from the python console by using the following function:

makeShapeString(String,FontFile,[Size],[Tracking])
  • Turns a text string into a Compound Shape using a specified font.

Example:

import FreeCAD,Draft
Draft.makeShapeString("This is a sample text",
                       "/usr/share/fonts/truetype/msttcorefonts/Arial.ttf",
                       200.0,10)

Selecting A Font

ShapeString uses the internal geometry of a font to make FreeCAD shapes. To do this it must read the actual font file (*.tff, etc). If the Font Selection box is empty, you must type the full path to the font file or use ... to select a font file.

Limitations

  • This tool is not available in FreeCAD versions anterior to 0.14
  • TrueType(*.ttf), OpenType(*.otf) and Type1(*.pfb) font files are supported.
  • Very small text heights may result in deformed character glyphs due to loss of detail in scaling.
  • The current version is limited to left-to-right layouts on a horizontal baseline.
  • For creating curved text you can use the macro Circular Text

Tutorials