Draft Mirror/es
Ubicación en el Menú |
---|
Draft → Mirror |
Entornos de trabajo |
Draft, Arch |
Atajo de teclado por defecto |
Ninguno |
Introducido en versión |
- |
Ver también |
Draft Scale |
Description
Descripción
Esta herramienta produce una copia duplicada de un objeto seleccionado, utilizando un objeto Part Mirror. La copia está vinculada de forma paramétrica al objeto original: si el objeto original cambia, la copia duplicada también cambia, pero se mantiene reflejada.
The Mirror tool can be used on 2D shapes created with the Draft Workbench, but can also be used on many types of 3D objects such as those created with the Part, PartDesign, or Arch Workbenches.
To create copies or clones, and manually place them use Draft Move, Draft Rotate, and Draft Clone.
Usage
Comment utiliser
- Sélectionnez les objets que vous souhaitez mettre en miroir
- Appuyez sur le bouton
Draft Mirror.
- Cliquez sur le premier point de la ligne miroir sur la vue 3D ou tapez une coordonnée
- Cliquez sur l'autre point de la ligne miroir de la vue 3D ou tapez une coordonnée
After creating the mirrored copy, its binding with the original object can be removed using the Part Create simple copy tool.
A mirrored copy of a Draft object can be turned into a Draft Wire, by using Draft Downgrade then
Draft Upgrade.
Opciones
- Después de la creación del espejo, su enlace con el objeto original se puede eliminar con la herramienta Part Create Simple Copy.
- El espejo de un objeto Draft también se puede convertir en un Draft Wire, usando Draft Downgrade luego Draft Upgrade.
Propiedades
- Data Base: El punto base del plano espejo
- Data Normal: la dirección normal del plano reflejado
Programación
La herramienta de clonación se puede usar en macros y desde la consola de python usando la siguiente función:
The Mirror tool can be used in macros and from the Python console by using the following function:
mirrored_list = mirror(objlist, p1, p2)
- Hace espejo (s) del objeto (s) dado a través de un plano definido por una línea de p1 a p2, y paralelo a la vista actual
- El resultado es un objeto Part Mirror
- Si el objeto original cambia, el objeto final también cambia pero se mantiene reflejado
Ejemplo:
import FeeCAD, Draft
place = FreeCAD.Placement(FreeCAD.Vector(1000, 0, 0), FreeCAD.Rotation())
Polygon1 = Draft.makePolygon(3, 750)
Polygon2 = Draft.makePolygon(5, 750, placement=place)
p1 = FreeCAD.Vector(2000, -1000, 0)
p2 = FreeCAD.Vector(2000, 1000, 0)
Line1 = Draft.makeLine(p1, p2)
mirrored1 = Draft.mirror(Polygon1, p1, p2)
Line2 = Draft.makeLine(-p1, -p2)
mirrored2 = Draft.mirror([Polygon1, Polygon2], -p1, -p2)
- 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