Draft Point/fr: Difference between revisions

From FreeCAD Documentation
(Created page with "{{Docnav/fr |BSpline Draft |Formes à partir texte Draft |Atelier Draft |IconL=Draft_BSpline.svg |IconC=Workb...")
No edit summary
Line 9: Line 9:
}}
}}


{{GuiCommand/fr
<div class="mw-translate-fuzzy">
|Name=Draft Point
{{GuiCommand/fr|Name=Draft Point|Name/fr=Draft Point|Workbenches=[[Draft Module/fr|Draft]], [[Arch Module/fr|Arch]]|MenuLocation=Draft → Point|Shortcut=P T}}
|Name/fr=Point Draft
</div>
|MenuLocation=Draft → Point
|Workbenches=[[Draft Module/fr|Atelier Draft]], [[Arch Module/fr|AtelierArch]]
|Shortcut=P T
|SeeAlso=[[Draft Line/fr|Ligne Draft]], [[Draft Wire/fr|Filaire Draft]]
|Version=0.7
}}


==Description==
==Description==

Revision as of 09:40, 21 September 2019

Point Draft

Emplacement du menu
Draft → Point
Ateliers
Atelier Draft, AtelierArch
Raccourci par défaut
P T
Introduit dans la version
0.7
Voir aussi
Ligne Draft, Filaire Draft

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.

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

  • Entrez les coordonnées manuellement, simplement en entrant les nombres, puis tapez sur la touche ENTER à chaque entrée X, Y et Z.
  • Pressez la touche ESC ou le bouton Annuler pour quitter la commande.

Propriétés

  • DonnéesX : La coordonnée X du point.
  • DonnéesY : La coordonnée Y du point.
  • DonnéesZ : La coordonnée Z du point.

Script

L'outil point, peut être utilisé dans des macros, et, dans la console Python, en utilisant le code suivant :

Point = makePoint(X=0, Y=0, Z=0, color=None, name="Point", point_size=5)
Point = makePoint(point, Y=0, Z=0, color=None, name="Point", point_size=5)
  • Crée un point, aux coordonnées définies. Si aucune coordonnées X, Y et z ne sont définies, le point est créé au point (0,0,0). Retourne le nouvel objet créé.

Exemple:

import random, FreeCAD, Draft

Point1 = Draft.makePoint(1600, 1400, 0)

p2 = FreeCAD.Vector(-3200, 1800, 0)
Point2 = Draft.makePoint(p2, color=(0.5, 0.3, 0.6), point_size=10)

# Make a loop and create ten points with random coordinates that extend
# from -L to L on both X and Y. Also choose a random color and size.

# Change value to define the area covered by the points
L = 1000
centered = FreeCAD.Placement(FreeCAD.Vector(-L,-L,0), FreeCAD.Rotation())
Rectangle = Draft.makeRectangle(2*L, 2*L, placement=centered)

for i in range(10):
    x = 2*L*random.random() - L
    y = 2*L*random.random() - L
    z = 0
    r = random.random()
    g = random.random()
    b = random.random()
    size = 15*random.random() + 5
    Draft.makePoint(x, y, z, color=(r, g, b), point_size=size)