Part: Linea
Appearance
|
|
| Posizione nel menu |
|---|
| Parte → Primitive → Linea |
| Ambiente |
| Part, OpenSCAD |
| Avvio veloce |
| Nessuno |
| Introdotto nella versione |
| - |
| Vedere anche |
| Part Primitive |
Descrizione
Una Part Linea è una linea parametrica che può essere creata con il comando
Part Primitive. Le coordinate dei punti iniziale e finale sono relative al sistema di coordinate definito dalla proprietà DatiPlacement.
Utilizzo
Vedere Part Primitive.
Proprietà
Vedere anche: Editor delle proprietà.
Un oggetto Part Linea deriva da un oggetto Funzione Part e ne eredita tutte le proprietà. Ha inoltre le seguenti proprietà aggiuntive:
Dati
Attachment
L'oggetto ha le stesse proprietà di collegamento di un Part Part2DObject.
Vertex 1 - Start
- DatiX1 (
Distance): la coordinata X del punto iniziale della linea. Il valore predefinito è0mm. - DatiY1 (
Distance): la coordinata Y del punto iniziale della linea. Il valore predefinito è0mm. - DatiZ1 (
Distance): la coordinata Z del punto iniziale della linea. Il valore predefinito è0mm.
Vertex 2 - Finish
- DatiX2 (
Distance): la coordinata X del punto finale della linea. Il valore predefinito è10mm. - DatiY2 (
Distance): la coordinata Y del punto finale della linea. Il valore predefinito è10mm. - DatiZ2 (
Distance): la coordinata Z del punto finale della linea. Il valore predefinito è10mm.
Script
Vedere anche: Autogenerated API documentation, Script di Part e Script di base per FreeCAD.
È possibile creare una Part Linea con il metodo addObject() del documento:
line = FreeCAD.ActiveDocument.addObject("Part::Line", "myLine")
- Dove
"myLine"è il nome dell'oggetto. - La funzione restituisce l'oggetto appena creato.
Esempio:
import FreeCAD as App
doc = App.activeDocument()
line = doc.addObject("Part::Line", "myLine")
line.X1 = 1
line.Y1 = 3
line.Z1 = 6
line.X2 = 2
line.Y2 = 3
line.Z2 = 9
doc.recompute()
- Creation and modification: New Sketch, Extrude, Revolve, Mirror, Scale, Fillet, Chamfer, Face From Wires, Ruled Surface, Loft, Sweep, Section, Cross-Sections, 3D Offset, 2D Offset, Thickness, Project on Surface, Appearance per Face
- Boolean: Compound, Explode Compound, Compound Filter, Boolean Operation, Cut, Union, Intersection, Connect Shapes, Embed Shapes, Cutout Shape, Boolean Fragments, Slice Apart, Slice to Compound, Boolean XOR, Check Geometry, Defeaturing
- Other tools: Box Selection, Shape From Mesh, Points From Shape, Convert to Solid, Reverse Shapes, Simple Copy, Transformed Copy, Shape Element Copy, Refine Shape, Set Tolerance, Persistent Section Cut, Attachment
- Preferences: Preferences, Fine tuning
- Getting started
- Installation: Download, Windows, Linux, Mac, Additional components, Docker, AppImage, Ubuntu Snap
- Basics: About FreeCAD, Interface, Mouse navigation, Selection methods, Object name, Preferences, Workbenches, Document structure, Properties, Help FreeCAD, Donate
- Help: Tutorials, Video tutorials
- Workbenches: Std Base, Assembly, BIM, CAM, Draft, FEM, Inspection, Material, Mesh, OpenSCAD, Part, PartDesign, Points, Reverse Engineering, Robot, Sketcher, Spreadsheet, Surface, TechDraw, Test Framework
- Hubs: User hub, Power users hub, Developer hub