Cleanup: trailing space

This commit is contained in:
2018-11-30 08:38:25 +11:00
parent 3c767cecce
commit 8ac2d85d2f
42 changed files with 232 additions and 242 deletions

View File

@@ -422,4 +422,3 @@ Functions
If the GPU does not support MSAA+Texture (e.g. Intel HD GPU), MSAA will be disabled. If the GPU does not support MSAA+Texture (e.g. Intel HD GPU), MSAA will be disabled.
:type target: integer :type target: integer
:rtype: :class:`RASOffScreen` :rtype: :class:`RASOffScreen`

View File

@@ -12,4 +12,3 @@ base class --- :class:`PyObjectPlus`
The name of this CValue derived object (read-only). The name of this CValue derived object (read-only).
:type: string :type: string

View File

@@ -31,4 +31,3 @@ base class --- :class:`SCA_ISensor`
The linear error on Distance can be positive if the distance between the bone and the target is greater than the desired distance, and negative if the distance is smaller. The linear error on Distance can be positive if the distance between the bone and the target is greater than the desired distance, and negative if the distance is smaller.
:type: float :type: float

View File

@@ -297,4 +297,3 @@ base class --- :class:`KX_GameObject`
# Gets an object with a property "wall" in front of the camera within a distance of 100: # Gets an object with a property "wall" in front of the camera within a distance of 100:
target = camera.getScreenRay(0.5, 0.5, 100, "wall") target = camera.getScreenRay(0.5, 0.5, 100, "wall")

View File

@@ -72,5 +72,3 @@ base class --- :class:`SCA_IActuator`
type of constraint. Use one of the :ref:`these constants <constraint-actuator-limit>` type of constraint. Use one of the :ref:`these constants <constraint-actuator-limit>`
:type: integer. :type: integer.

View File

@@ -298,4 +298,3 @@ then copied :kbd:`Control-C`, usually to paste in the text editor or python cons
zooming the view for example isn't so useful to repeat so its excluded from the output. zooming the view for example isn't so useful to repeat so its excluded from the output.
To display *every* operator that runs see :ref:`Show All Operators <info_show_all_operators>` To display *every* operator that runs see :ref:`Show All Operators <info_show_all_operators>`

View File

@@ -392,4 +392,3 @@ While developing a script it is good to time it to be aware of any changes in pe
# do something... # do something...
print("My Script Finished: %.4f sec" % (time.time() - time_start)) print("My Script Finished: %.4f sec" % (time.time() - time_start))

View File

@@ -477,4 +477,3 @@ Using Low-Level Functions:
fcu_z.keyframe_points.add(2) fcu_z.keyframe_points.add(2)
fcu_z.keyframe_points[0].co = 10.0, 0.0 fcu_z.keyframe_points[0].co = 10.0, 0.0
fcu_z.keyframe_points[1].co = 20.0, 1.0 fcu_z.keyframe_points[1].co = 20.0, 1.0

View File

@@ -320,4 +320,3 @@ enable the CMake build option ``WITH_PYTHON_SAFETY``.
This enables data tracking which makes data access about 2x slower This enables data tracking which makes data access about 2x slower
which is why the option isn't enabled in release builds. which is why the option isn't enabled in release builds.