Draft Point/fr: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
Line 1: Line 1:
<languages/>
<languages/>
{{docnav|[[Draft_BSpline|BSpline]]|[[Draft_ShapeString|ShapeString]]|[[Draft_Module|Draft]]|IconL=Draft_BSpline.svg |IconC=Workbench_Draft.svg|IconR=Draft_ShapeString.svg }}
{{Docnav|[[Draft_BSpline|BSpline]]|[[Draft_ShapeString|ShapeString]]|[[Draft_Module|Draft]]|IconL=Draft_BSpline.svg |IconC=Workbench_Draft.svg|IconR=Draft_ShapeString.svg }}


<div class="mw-translate-fuzzy">
<div class="mw-translate-fuzzy">
Line 83: Line 83:
}}
}}


{{docnav|[[Draft_BSpline|BSpline]]|[[Draft_ShapeString|ShapeString]]|[[Draft_Module|Draft]]|IconL=Draft_BSpline.svg |IconC=Workbench_Draft.svg|IconR=Draft_ShapeString.svg }}
{{Docnav|[[Draft_BSpline|BSpline]]|[[Draft_ShapeString|ShapeString]]|[[Draft_Module|Draft]]|IconL=Draft_BSpline.svg |IconC=Workbench_Draft.svg|IconR=Draft_ShapeString.svg }}


{{Draft Tools navi}}
{{Draft Tools navi}}

Revision as of 19:54, 11 February 2019

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.

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)