Draft Point/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "{{GuiCommand/fr|Name=Draft Point|Name/fr=Draft Point|Workbenches=Draft, Arch|MenuLocation=Draft → Point|Shortcut=P T}}")
(Created page with "L'outil '''Point''' 16px crée un simple point dans le document courant plan de travail, pratique pour servir de point de r...")
Line 3: Line 3:
==Description==
==Description==


L'outil '''Point''' [[Image:Draft Point.png|16px]] crée un simple point dans le document courant [[Draft Workingplane/fr|plan de travail]], pratique pour servir de point de repère, pour placer un autre objet plus tard. Il prend les attributs de [[Draft Linestyle/fr|couleur]] précédemment définis sous l'onglet tâches, ou sur la barre d'outils [[File:Draft_Style_Couleur_Ligne.png|128px]], 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'''
The Point tool creates a simple point in the current [[Draft Workingplane|work plane]], handy to serve as reference for placing other objects later. It takes the [[Draft Linestyle|color]] previously set on the Tasks tab.


[[Image:Draft_point_example.jpg|400px]]
[[Image:Draft_point_example.jpg|400px]]

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

How to use

  1. Press the Draft Point button, or press P then T keys
  2. Click a point on the 3D view, or type a coordinate

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)