Draft SelectPlane/cs

Kreslení VýběrRoviny

Umístění Menu
Kreslení -> Utility -> Výběr roviny
Pracovní stoly
Kreslení, Architektura
Výchozí zástupce
Nikdo
Představen ve verzi
-
Viz také
Nikdo

Description

Popis

Modul kreslení má pracovní rovinu, která umožňuje specifikovat uživatelskou rovinu ve 3D, na které se bude realizovat následujíci kreslicí příkaz. Pro definování pracovní roviny existuje několik metod:

  • Z vybrané plochy
  • Z aktuálního pohledu
  • Z předvolby: horní, přední nebo boční
  • Žádná, v tomto případě je pracovní rovina automaticky adaptována podle aktuálního pohledu, kde spouštíte příkaz nebo na ploše, pokud začínáte kreslení na existující ploše.

introduced in 1.0: For each 3D View a separate working plane is stored.

The button in the Draft Tray changes depending on the current working plane. introduced in 1.0: If the working plane is not set to Auto an asterisk (*) is appended to the button label if the origin of the working plane does not match the global origin.

Shapes created on different working planes

Usage with pre-selection

  1. Do one of the following:
    • Select a single object. The following objects are supported:
    • Select one or more subelements. You can select:
      • A vertex (introduced in 26.3). The origin of the working plane is moved to that vertex without changing its orientation.
      • Two vertices, or a straight edge (introduced in 26.3). The origin of the working plane is moved to the first selected vertex (or the start point of the edge) and the second vertex (or endpoint of the edge) defines the direction of the X-axis.
      • Three vertices, an edge and a vertex (introduced in 1.0), or two edges (introduced in 1.0). The combined vertices must define a plane. The first and second vertex define the origin and X-axis.
      • A planar curved edge. If the edge is circular or elliptical, the center of the edge defines the origin and the start point of the edge defines the direction of the X-axis. For other edges the start point defines the origin and the direction of X-axis is defined by the tangent at that point.
      • A planar face. The center of gravity of the face defines the origin. The direction of the X- and Y-axis are derived from the U- and V-vector of the face.
      • A planar face and an edge (introduced in 1.1). The start and endpoint of the edge are projected onto the face plane and define the origin and X-axis.
  2. There are several ways to invoke the command:
    • Press the button in the Draft Tray.
    • Draft: Select the Utilities → Working Plane option from the menu, or from the Tree View or 3D View context menu.
    • Draft: Use the keyboard shortcut: W then P.
  3. The working plane and the button in the Draft Tray are updated.

Usage with post-selection

  1. Invoke the command as explained above.
  2. The Working Plane Setup task panel opens. See Options for more information.
  3. Do one of the following:
  4. Click anywhere in the 3D View to confirm the selection and finish the command.
  5. The working plane and the button in the Draft Tray are updated.

Usage with presets

  1. Invoke the command as explained above.
  2. The Working Plane Setup task panel opens. See Options for more information.
  3. Press any of the buttons to finish the command.
  4. The working plane and the button in the Draft Tray are updated.

Options

Volby

  • Pro nastavení pracovní roviny na existující plochu: vyberte existující objekt ve 3D pohledu a potom stiskněte tlačítko VýběrRoviny
  • Stisknutí tlačítka POHLED nastaví pracovní rovinu jako je rovina pohledu, kolmo k osám kamery a procházející počátkem (0,0,0).
  • Stisknutí tlačítka ŽÁDNÁ zruší nastavení aktuální pracovní roviny. Následující 2D operace budou závislé na pohledu.
  • Múžete také specifikovat hodnotu odsunutí, což odsune pracovní rovinu o zadanou vzdálenost od vybrané roviny.

Notes

Preferences

See also: Preferences Editor and Draft Preferences.

Scripting

Skriptování

Objekt pracovní roviny může být snadno vyvořen a manipulován ve skriptech a makrech. Můžete vytvářet vlastní a používat je nezávisle na aktuální pracovní ploše Kreslení.

introduced in 1.0:

The WorkingPlane module offers two classes to create working plane objects: the PlaneBase class and the PlaneGui class. The second class inherits from the first. Objects of the PlaneGui class interact with the GUI (the Draft Tray button), the 3D View and the grid. PlaneBase objects do not.

Use the get_working_plane() method of the WorkingPlane module to get an instance of the PlaneGui class linked to the current 3D View. The method either returns the existing working plane linked to the view or creates a new working plane if required.

import FreeCAD as App
import WorkingPlane

wp = WorkingPlane.get_working_plane()

origin = App.Vector(0, 0, 0)
normal = App.Vector(1, 1, 1).normalize()
offset = 17
wp.align_to_point_and_axis(origin, normal, offset)

point = App.Vector(10, 15, 2)
projection = wp.project_point(point)
print(projection)

The PlaneBase class can be used to create working planes independent of the GUI:

import WorkingPlane

wp = WorkingPlane.PlaneBase()