Draft Linea
Ubicación en el Menú |
---|
Croquis → Línea |
Entornos de trabajo |
Croquis, Arquitectura |
Atajo de teclado por defecto |
L I |
Introducido en versión |
- |
Ver también |
Contorno |
Description
Descripción
La herramienta de Línea crea un segmento recto de línea entre dos puntos. Toma el tipo de línea y color previamente establecido. La herramienta de Línea se comporta exactamente igual que la herramienta Línea del módulo de boceto, excepto porque utiliza sólo dos puntos.
Usage
Cómo utilizarla
- Presiona el botón
de la herramienta de Línea o pulsa las teclas L y I
- Indica un primer punto en la vista 3D, o escribe sus coordenadas
- Indica un segundo punto en la vista 3D, o escribe sus coordenadas
The line can be edited by double clicking on the element in the tree view, or by pressing the Draft Edit button. Then you can move the points to a new position.
Fusing single lines
If several connected Draft Lines are selected they can be fused into a wire by pressing the Draft Upgrade tool; however, this
Wire will not be editable. To create an editable wire, use
Draft Upgrade three more times on the new shapes (wire, closed wire, face). You can also fuse the original lines with the
Draft Wire tool.
Adding points
A wire can also be created from a single line by adding another point anywhere along its length. To do this, press the add point button, and click anywhere on the line.
Opciones
- Presiona X, Y o Z después del primer punto para restringir el segundo punto de un eje dado.
- Para introducir coordenadas manualmente, simplemente introduce el número y presiona ENTER entre cada componente X, Y y Z.
- Presiona R o pulsa el checkbox para activar o desactivar el modo Relativo. Si está activado el modo relativo, las coordenadas del segundo punto serán relativas al primero. En caso contrario, serán absolutas, a partir del punto de origen (0,0,0).
- Presiona T o pulsa el checkbox para activar o desactivar el modo Continuo. Si está activado el modo continuo, la herramienta de Línea se reiniciará después de que indiques el segundo punto, permitiendo que dibujes otro segmento de línea sin presionar el icono de Línea de nuevo.
- Presiona CTRL mientras dibujas para forzar el ajuste de tu punto a las ubicaciones de ajuste más cercanas, independientemente de la distancia.
- Presiona SHIFT mientras dibujas para restringir tu segundo punto horizontal o verticalmente en relación al primer punto.
- Presiona CTRL+Z o presiona el icono
Undo para deshacer el último punto.
- Presiona ESC o el icono Cancel para cancelar el comando Línea actual.
- Si se seleccionan Draft Lineas conectadas, se pueden transformar en un cable presionando el botón Draft Upgrade.
Propiedades
- DATOSInicio: El punto de Inicio
- DATOSFin: El punto final
- DATOSSubdivisions: Divide la línea con el número dado de subdivisiones Disponible en la versión 0.16
Data
- DataStart: specifies the start point.
- DataEnd: specifies the end point.
- DataSubdivisions: specifies the number of interior nodes in the line. introduced in version 0.16
- DataLength: (read-only) specifies the length of the segment.
View
- ViewEnd Arrow: if it is
true
it will display a symbol at the last point of the line, so it can be used as an annotation line. - ViewArrow Size: specifies the size of the symbol displayed at the end of the line.
- ViewArrow Type: specifies the type of symbol displayed at the end of the line, which can be "Dot", "Circle", "Arrow", or "Tick".
Archivos de guión
La herramienta Línea se puede utilizar en macros y desde la consola de Python utilizando la siguiente función:
The Line tool can be used in macros and from the Python console by using the following function:
Line = makeLine(p1, p2)
Line = makeLine(LineSegment)
Line = makeLine(Shape)
- Crea objeto
Line
entre dos puntosp1
andp2
, cada uno definido comoFreeCAD.Vector
- Crea objeto
Line
a partir dePart.LineSegment
- Crea objeto
Line
que va del primer vértice al último vértice deShape
- El estilo de línea actual será usado
Ejemplo:
import FreeCAD as App
import Draft
_doc = App.newDocument()
p1 = App.Vector(0, 0, 0)
p2 = App.Vector(1000, 500, 0)
p3 = App.Vector(-250, -500, 0)
p4 = App.Vector(500, 1000, 0)
Line1 = Draft.makeLine(p1, p2)
Line2 = Draft.makeLine(p3, p4)
_doc.recompute()
- Basics: Coordinates, Constraining, Snapping (Near, Extension, Parallel, Grid, Endpoint, Midpoint, Perpendicular, Angle, Center, Ortho, Intersection, Special, Dimensions, Working plane)
- Drawing: Line, Wire, Circle, Arc, Ellipse, Polygon, Rectangle, Text, Dimension, BSpline, Point, ShapeString, Facebinder, Bezier Curve, Label
- Modifying: Move, Rotate, Offset, Trimex, Upgrade, Downgrade, Scale, Edit, Wire to BSpline, Add point, Delete point, Shape 2D View, Draft to Sketch, Array, Path Array, Point Array, Clone, Drawing, Mirror, Stretch
- Utilities: Set working plane, Finish line, Close line, Undo line, Toggle construction mode, Toggle continue mode, Apply style, Toggle display mode, Add to group, Select group contents, Toggle snap, Toggle grid, Show snap bar, Heal, Flip Dimension, VisGroup, Slope, AutoGroup, Set Working Plane Proxy, Add to Construction group
- Additional: Preferences, Import-Export Preferences (DXF/DWG, SVG, OCA, DAT); Draft API

- Installation: Windows, Linux, Mac; Getting started
- Basics: About FreeCAD, Workbenches, Preferences, Document structure, Interface Customization, Properties, Mouse Model; Tutorials
- Workbenches: Arch, Draft, FEM, Image, Inspection, Mesh, OpenSCAD, Part, PartDesign, Path, Plot, Points, Raytracing, Reverse Engineering, Robot, Ship, Sketcher, Spreadsheet, Start, Surface workbench, TechDraw, Test Framework, Web
- Scripting: Introduction to Python, FreeCAD scripting tutorial, FreeCAD Scripting Basics, How to install macros, Gui Command, Units Modules: Builtin modules, Workbench creation, Installing more workbenches Meshes: Mesh Scripting, Mesh Module Parts: The Part Module, Topological data scripting, PythonOCC, Mesh to Part Coin scenegraph: The Coin/Inventor scenegraph, Pivy Qt interface: PySide, Using the FreeCAD GUI, Dialog creation Parametric objects: Scripted objects Other: Code snippets, Line drawing function, Embedding FreeCAD, FreeCAD vector math library, Power users hub, Python, Macros, FreeCAD Scripting Basics, Topological data scripting