Part DatumPoint

From FreeCAD Documentation
This page contains changes which are not marked for translation.


Part DatumLine

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

Description

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.

Usage

See Part CoordinateSystem.

Notes

See Part CoordinateSystem.

Properties

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.

Data

See Part DatumPlane.

View

See Part DatumPlane.

Scripting

import FreeCAD as App

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