Draft BSpline/cs: Difference between revisions

From FreeCAD Documentation
(Created page with "==popis== Nástroj BSpline vytváří [http://en.wikipedia.org/wiki/B-spline B-Spline křivku] z několika bodů v aktuální pracovní rovině. Přeb...")
(Created page with "==Použití== # Stiskněte tlačítko {{KEY|16px BSpline}} nebo klávesy {{KEY|B}} potom {{KEY|S}} # Klikněte na první bod ve 3...")
Line 6: Line 6:
[[Image:Draft_bspline_example.jpg|400px]]
[[Image:Draft_bspline_example.jpg|400px]]


==How to use==
==Použití==
# Press the {{KEY|[[Image:Draft BSpline.png|16px]] [[Draft BSpline]]}} button, or press {{KEY|B}} then {{KEY|S}} keys
# Stiskněte tlačítko {{KEY|[[Image:Draft BSpline.png|16px]] [[Draft BSpline|BSpline]]}} nebo klávesy {{KEY|B}} potom {{KEY|S}}
# Click a first point on the 3D view, or type a [[Draft_Coordinates|coordinate]]
# Klikněte na první bod ve 3D pohledu nebo zadejte jeho [[Draft_Coordinates|koordináty]]
# Click additional point on the 3D view, or type a [[Draft_Coordinates|coordinate]]
# Klikněte na další bod ve 3D pohledu nebo zadejte jeho [[Draft_Coordinates|koordináty]]
# Stiskněte klávesu {{KEY|F}} nebo {{KEY|C}} nebo dvojklikněte na poslední bod pro ukončení nebo uzavření křivky. Je-li křivka uzavřena, bude zároveň i povrchem i když se jeví jako drátový model.
# Press {{KEY|F}} or {{KEY|C}}, or double-click the last point, or click on the first point to finish or close the spline. If the spline is closed, it will also be a face, even if it appears as wireframe.


==Options==
==Options==

Revision as of 18:36, 16 January 2014

Draft BSpline

Menu location
Draft -> BSpline
Workbenches
Draft, Arch
Default shortcut
B S
Introduced in version
-
See also
Draft Wire

popis

Nástroj BSpline vytváří B-Spline křivku z několika bodů v aktuální pracovní rovině. Přebírá tloušťku čáry a barvu předtím nastavenou v záložce nástrojů. Nástroj BSpline se chová přesně stejně jako nástroj Drát.

Použití

  1. Stiskněte tlačítko BSpline nebo klávesy B potom S
  2. Klikněte na první bod ve 3D pohledu nebo zadejte jeho koordináty
  3. Klikněte na další bod ve 3D pohledu nebo zadejte jeho koordináty
  4. Stiskněte klávesu F nebo C nebo dvojklikněte na poslední bod pro ukončení nebo uzavření křivky. Je-li křivka uzavřena, bude zároveň i povrchem i když se jeví jako drátový model.

Options

  • Press F or the Finish button to finish the spline, leaving it open
  • Press C or the Close button or click on the first point to finish the spline, but making it closed by adding a last segment between the last point and the first one.
  • Press X, Y or Z after a point to constrain the next point on the given axis.
  • To enter coordinates manually, simply enter the numbers, then press ENTER between each X, Y and Z component.
  • Press R or click the checkbox to check/uncheck the Relative button. If relative mode is on, the coordinates of the next point are relative to the last one. If not, they are absolute, taken from the (0,0,0) origin point.
  • Press T or click the checkbox to check/uncheck the Continue button. If continue mode is on, the BSpline tool will restart after you finish or close it, allowing you to draw another one without pressing the BSpline button again.
  • Press CTRL while drawing to force snapping your point to the nearest snap location, independently of the distance.
  • Press SHIFT while drawing to constrain your next point horizontally or vertically in relation to the last one.
  • Press W or press the Wipe button to remove the existing segments and start the spline from the last point.
  • Press CTRL+Z or press the Undo button to undo the last point.
  • Press I or the Filled button to have the spline to appear as a face after it has been closed. This simply sets the View->Property of the Wire to "Flat lines" or "Wireframe", so it can easily be changed later.
  • Press ESC or the Cancel button to abort the current BSpline command.

Properties

  • ÚdajeClosed: Specifies if the spline is closed or not
  • PohledEnd Arrow: Shows an arrow symbol at the last point of the spline, so it can be used as an annotation leader line

Scripting

The BSpline tool can by used in macros and from the python console by using the following function:

 '''makeBSpline (pointslist,[closed],[placement])'''
  • Creates a B-Spline object from the given list of vectors.
  • If closed is True or first and last points are identical, the wire is closed.
  • If face is true (and the bspline is closed), the bspline will appear filled.
  • Instead of a list of points, you can also pass a Part Wire.
  • Returns the newly created object.

Example:

 import FreeCAD,Draft
 p1 = FreeCAD.Vector(0,0,0)
 p2 = FreeCAD.Vector(1,1,0)
 p3 = FreeCAD.Vector(2,0,0)
 Draft.makeBSpline([p1,p2,p3],closed=True)