Draft Circle/sv: 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:
<div class="mw-translate-fuzzy">
{{GuiCommand/sv|Name=Draft Circle|Name/sv=Draft Circle|Workbenches=[[Draft Module/sv|Draft]], [[Arch Module/sv|Arch]]|MenuLocation=Draft -> Circle|Shortcut=C I|SeeAlso=[[Draft Arc/sv|Draft Arc]]}}
{{GuiCommand/sv|Name=Draft Circle|Name/sv=Draft Circle|Workbenches=[[Draft Module/sv|Draft]], [[Arch Module/sv|Arch]]|MenuLocation=Draft -> Circle|Shortcut=C I|SeeAlso=[[Draft Arc/sv|Draft Arc]]}}
</div>


<div class="mw-translate-fuzzy">
==Description==
====Beskrivning====
The Circle tool creates a circle in the current [[Draft SelectPlane|work plane]] by entering two points, the center and the radius, or by picking tangents, or any combination of those. It takes the [[Draft Linestyle|linewidth and color]] previously set on the Tasks tab. This tool works the same way as the [[Draft Arc]] tool, except that it stops after entering the radius.

Detta verktyg ritar en cirkel genom att fråga efter två punkter, Centrum och radie, genom att välja tangenter, eller någon kombination av dessa.
</div>


[[Image:Draft_Circle_example.jpg|400px]]
[[Image:Draft_Circle_example.jpg|400px]]
Line 11: Line 16:
# Click a second point on the 3D view, or enter a radius value.
# Click a second point on the 3D view, or enter a radius value.


<div class="mw-translate-fuzzy">
==Options==
====Bruk====
* The primary use of the circle tool is by picking two points, the centre and a point on the circumference, defining the radius.

* By pressing {{KEY|ALT}}, you can select a tangent instead of picking a point. You can therefore construct several types of circles by selecting one, two or three tangents.
* Det primära bruket av cirkelverktyget är att markera två punkter, centrumet och en punkt på omkretsen, vilket definierar radien.
* To enter coordinates manually, simply enter the numbers, then press {{KEY|ENTER}} between each X, Y and Z component.
* Om man trycker ned {{KEY|ALT}}, så kan du välja en tangent istället för att markera en punkt. Du kan därför konstruera flera cirkeltyper genom att välja en, två eller tre tangenter.
* Press {{KEY|T}} or click the checkbox to check/uncheck the {{KEY|'''Continue'''}} button. If continue mode is on, the Circle tool will restart after you give the second point, allowing you to draw another circle without pressing the Circle button again.
* Välj en punkt i ett tomt område i 3d vyn, eller på ett existerande objekt.
* Press {{KEY|CTRL}} while drawing to force [[Draft_Snap|snapping]] your point to the nearest snap location, independently of the distance.
* Nedtryckning av {{KEY|CTRL}} kommer att [[Draft_Snap/sv|snäppa]] din punkt till tillgängliga snäpp-punkter.
* Press {{KEY|SHIFT}} while drawing to [[Draft_Constrain|constrain]] your second point horizontally or vertically in relation to the first one.
* Nedtryckning av {{KEY|SKIFT}} [[Draft_Constrain/sv|begränsar]] din nya punkt i relation till föregående punkt.
* Press {{KEY|I}} or the {{KEY|'''Filled'''}} button to have the circle filled with a face.
* Skriv in siffror för att [[Draft_Coordinates/sv|manuellt mata in en koordinat]].
* Press {{KEY|ESC}} or the {{KEY|'''Cancel'''}} button to abort the current Line command.
* Om du trycker på {{KEY|ESC}} så avbryts funktionen.
* The circle can be turned into an arc after creation, by setting its first angle and last angle properties to different values.
* Den skapade cirkeln kommer att ha nuvarande [[Draft_Linestyle/sv|linjestil]].
* Circles, when in "Flat Lines" display mode, can display a hatch pattern, by setting their "Pattern" property below.
</div>


==Properties==
==Properties==

Revision as of 09:34, 3 May 2018

Draft Circle

Menyplacering
Draft -> Circle
Arbetsbänkar
Draft, Arch
Standard genväg
C I
Introducerad i version
-
Se även
Draft Arc

Beskrivning

Detta verktyg ritar en cirkel genom att fråga efter två punkter, Centrum och radie, genom att välja tangenter, eller någon kombination av dessa.

How to use

  1. Press the Draft Circle button, or press C then I keys
  2. Click a first point on the 3D view, or type a coordinate
  3. Click a second point on the 3D view, or enter a radius value.

Bruk

  • Det primära bruket av cirkelverktyget är att markera två punkter, centrumet och en punkt på omkretsen, vilket definierar radien.
  • Om man trycker ned ALT, så kan du välja en tangent istället för att markera en punkt. Du kan därför konstruera flera cirkeltyper genom att välja en, två eller tre tangenter.
  • Välj en punkt i ett tomt område i 3d vyn, eller på ett existerande objekt.
  • Nedtryckning av CTRL kommer att snäppa din punkt till tillgängliga snäpp-punkter.
  • Nedtryckning av SKIFT begränsar din nya punkt i relation till föregående punkt.
  • Skriv in siffror för att manuellt mata in en koordinat.
  • Om du trycker på ESC så avbryts funktionen.
  • Den skapade cirkeln kommer att ha nuvarande linjestil.

Properties

  • DataRadius: The radius of the circle
  • DataMake Face: Fills the circle with a face
  • VyPattern: Specifies a hatch pattern to fill the wire with
  • VyPattern Size: Specifies the size of the hatch pattern

See also Draft Pattern page.

Skriptning

Den skapade cirkeln är ett Del föremå som innehåller en kant med endast ett hörn.

makeCircle (radius, [placement], [facemode], [startangle], [endangle])
  • Creates a circle object with given radius.
  • If a placement is given, it is used.
  • If facemode is False, the circle is shown as a wireframe, otherwise as a face.
  • If startangle AND endangle are given (in degrees), they are used and the object appears as an arc.
  • Returns the newly created object.

Example:

import Draft
myCircle = Draft.makeCircle(2)