Base: apply clang format

This commit is contained in:
wmayer
2023-11-10 18:27:44 +01:00
committed by WandererFan
parent bb333d9a74
commit 985def3416
154 changed files with 11874 additions and 9872 deletions

View File

@@ -13,18 +13,18 @@
FatherNamespace="Base">
<Documentation>
<Author Licence="LGPL" Name="Juergen Riegel" EMail="FreeCAD@juergen-riegel.net" />
<UserDocu>Base.Axis class.
<UserDocu>Base.Axis class.
An Axis defines a direction and a position (base) in 3D space.
An Axis defines a direction and a position (base) in 3D space.
The following constructors are supported:
The following constructors are supported:
Axis()
Empty constructor.
Empty constructor.
Axis(axis)
Copy constructor.
axis : Base.Axis
axis : Base.Axis
Axis(base, direction)
Define from a position and a direction.
@@ -34,34 +34,34 @@ direction : Base.Vector</UserDocu>
</Documentation>
<Methode Name="copy">>
<Documentation>
<UserDocu>copy() -> Base.Axis
<UserDocu>copy() -> Base.Axis
Returns a copy of this Axis.</UserDocu>
</Documentation>
</Methode>
<Methode Name="move">
<Documentation>
<UserDocu>move(vector) -> None
<UserDocu>move(vector) -> None
Move the axis base along the given vector.
Move the axis base along the given vector.
vector : Base.Vector
vector : Base.Vector
Vector by which to move the axis.</UserDocu>
</Documentation>
</Methode>
<Methode Name="multiply">
<Documentation>
<UserDocu>multiply(placement) -> Base.Axis
<UserDocu>multiply(placement) -> Base.Axis
Multiply this axis by a placement.
Multiply this axis by a placement.
placement : Base.Placement
placement : Base.Placement
Placement by which to multiply the axis.</UserDocu>
</Documentation>
</Methode>
<Methode Name="reversed">
<Documentation>
<UserDocu>reversed() -> Base.Axis
<UserDocu>reversed() -> Base.Axis
Compute the reversed axis. This returns a new Base.Axis with
the original direction reversed.</UserDocu>