In FreeCAD, Placement defines an object's position and rotation. The Placement concept is explained in detail here: Placement.
Example of setting a document object's Placement:
myObj = FreeCAD.ActiveDocument.ActiveObject
pl = FreeCAD.Placement()
pl.move(FreeCAD.Vector(2,0,0))
myObj.Placement = pl

Description: Constructs a placement, empty or with the given arguments, or as a copy of the given placement.

Returns: a vector representing the Placement's position.

Returns: a quaternion representing the Placement's rotation.

Description: computes the inverse placement
Returns: a placement.

Description: moves the Placement along the given vector
Returns: nothing

Description: applies the Placement to the given vector
Returns: the resulting vector.

Description: multiplies this placement with another one
Returns: the resulting placement.

Description:
Returns: a matrix representing the Placement's transformation.
Tato stránka je načtena z https://wiki.freecad.org/Placement_API