|
|
| Menu location |
|---|
| None |
| Workbenches |
| All |
| Default shortcut |
| None |
| Introduced in version |
| 1.1 |
| See also |
| Part CoordinateSystem, Part DatumPlane, Part DatumLine |
The Part DatumPoint command creates a datum point object that can be attached to other objects. A datum point 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.
See also: Property editor.
A Part::DatumPoint object is derived from an App::Point object. All its properties are inherited except those listed under Attachment.
See Part DatumPlane.
See Part DatumPlane.
import FreeCAD as App
doc = App.newDocument()
obj = doc.addObject("Part::DatumPoint", "DatumPoint")
doc.recompute()