Draft Point/es: Difference between revisions

From FreeCAD Documentation
(Created page with "# Presiona el botón {{KEY|16px punto}}, o presiona las teclas {{KEY|P}} y {{KEY|T}} # Designa un punto en la vista 3D, o escribe ...")
(Created page with "==Opciones==")
Line 12: Line 12:
# Designa un punto en la vista 3D, o escribe unas coordenadas [[Draft_Coordinates/es|coordenadas]]
# Designa un punto en la vista 3D, o escribe unas coordenadas [[Draft_Coordinates/es|coordenadas]]


==Options==
==Opciones==


* To enter coordinates manually, simply enter the numbers, then press {{KEY|ENTER}} between each X, Y and Z component.
* To enter coordinates manually, simply enter the numbers, then press {{KEY|ENTER}} between each X, Y and Z component.

Revision as of 13:58, 13 February 2014

Draft Point

Ubicación en el Menú
Boceto-> Punto
Entornos de trabajo
Boceto, Arquitectura
Atajo de teclado por defecto
P T
Introducido en versión
-
Ver también
Ninguno

Descripción

La herramienta punto crea un punto simple en el plano de trabajo actual, útil para servir como referencia para ubicar otros objetos después. Toma el color previamente establecido en la pestaña de tareas.

Utilización

  1. Presiona el botón punto, o presiona las teclas P y T
  2. Designa un punto en la vista 3D, o escribe unas coordenadas coordenadas

Opciones

  • To enter coordinates manually, simply enter the numbers, then press ENTER between each X, Y and Z component.
  • Press ESC or the Cancel button to abort the current Line command.

Properties

  • DatosX: The X coordinate of the point
  • DatosY: The Y coordinate of the point
  • DatosZ: The Z coordinate of the point

Scripting

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

 makePoint([x],[y],[z])
  • makes a point at the given coordinates. If no X, Y and Z coordinates are given, the point is created at (0,0,0). Returns the newly created object.

Example:

 import Draft
 Draft.makePoint(6,4,2)