Draft Point/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "==Utilisation==")
(Created page with "# Pressez le bouton {{KEY|16px Point}}, ou pressez les touches {{KEY|P}} et {{KEY|T}}. # Cliquez un point dans la vue 3D, ou tapez...")
Line 9: Line 9:
==Utilisation==
==Utilisation==


# Press the {{KEY|[[Image:Draft Point.png|16px]] [[Draft Point]]}} button, or press {{KEY|P}} then {{KEY|T}} keys
# Pressez le bouton {{KEY|[[Image:Draft Point.png|16px]] [[Draft Point/fr|Point]]}}, ou pressez les touches {{KEY|P}} et {{KEY|T}}.
# Click a point on the 3D view, or type a [[Draft_Coordinates|coordinate]]
# Cliquez un point dans la vue 3D, ou tapez ces [[Draft_Coordinates/fr|coordonnées]].


==Options==
==Options==

Revision as of 14:02, 13 February 2014

Draft Point

Emplacement du menu
Draft → Point
Ateliers
Draft, Arch
Raccourci par défaut
P T
Introduit dans la version
-
Voir aussi
Aucun

Description

L'outil Point crée un simple point dans le document courant plan de travail, pratique pour servir de point de repère, pour placer un autre objet plus tard. Il prend les attributs de couleur précédemment définis sous l'onglet tâches, ou sur la barre d'outils , ou Vue combinée → Onglet Vue → Propriété → Point Color. La grosseur du point se règle à partir de, Vue combinée → Onglet Vue → Propriété → Point Size

Utilisation

  1. Pressez le bouton Point, ou pressez les touches P et T.
  2. Cliquez un point dans la vue 3D, ou tapez ces coordonnées.

Options

  • 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

  • DonnéesX: The X coordinate of the point
  • DonnéesY: The Y coordinate of the point
  • DonnéesZ: 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)