Part DatumLine/it

Part DatumLine

Menu location
None
Workbenches
All
Default shortcut
None
Introduced in version
1.1
See also
Part CoordinateSystem, Part DatumPlane, Part DatumPoint

Descrizione

The Part DatumLine command creates a datum line object that can be attached to other objects. A datum line is one of several datum objects. A datum object is typically used to attach multiple other objects to. If the position or orientation of a datum object changes, all objects attached to it will follow.

A datum object can also provide a geometric reference for a feature or operation. Depending on its type it may for example be used as a direction vector, a rotation axis or a mirror plane.

Utilizzo

Note

Proprietà

See also: Property View.

A Part::DatumLine object is derived from an App::Line object. All its properties are inherited except those listed under Attachment.

Dati

Vista

Script

import FreeCAD as App

doc = App.newDocument()
obj = doc.addObject("Part::DatumLine", "DatumLine")
doc.recompute()