Commit: 2b15a588a1877231d73f8dd8ad81f8a6c0a850af
Author: Campbell Barton
Date:   Sun Jun 12 10:05:35 2016 +1000
Branches: master
https://developer.blender.org/rB2b15a588a1877231d73f8dd8ad81f8a6c0a850af

Cleanup: API docs (whitespace/line length)

===================================================================

M       doc/python_api/rst/bge.events.rst
M       doc/python_api/rst/bge.texture.rst
M       doc/python_api/rst/bge_types/bge.types.SCA_PythonJoystick.rst
M       doc/python_api/rst/include__bmesh.rst
M       doc/python_api/rst/info_quickstart.rst

===================================================================

diff --git a/doc/python_api/rst/bge.events.rst 
b/doc/python_api/rst/bge.events.rst
index 8dbded6..4213592 100644
--- a/doc/python_api/rst/bge.events.rst
+++ b/doc/python_api/rst/bge.events.rst
@@ -12,53 +12,53 @@ This module holds key constants for the SCA_KeyboardSensor.
 
 .. code-block:: python
 
-       # Set a connected keyboard sensor to accept F1
-       import bge
-
-       co = bge.logic.getCurrentController()
-       # 'Keyboard' is a keyboard sensor
-       sensor = co.sensors["Keyboard"]
-       sensor.key = bge.events.F1KEY
-
-.. code-block:: python
-
-       # Do the all keys thing
-       import bge
-
-       co = bge.logic.getCurrentController()
-       # 'Keyboard' is a keyboard sensor
-       sensor = co.sensors["Keyboard"]
-
-       for key,status in sensor.events:
-               # key[0] == bge.events.keycode, key[1] = status
-               if status == bge.logic.KX_INPUT_JUST_ACTIVATED:
-                       if key == bge.events.WKEY:
-                               # Activate Forward!
-                       if key == bge.events.SKEY:
-                               # Activate Backward!
-                       if key == bge.events.AKEY:
-                               # Activate Left!
-                       if key == bge.events.DKEY:
-                               # Activate Right!
-
-.. code-block:: python
-
-       # The all keys thing without a keyboard sensor (but you will
-       # need an always sensor with pulse mode on)
-       import bge
-
-       # Just shortening names here
-       keyboard = bge.logic.keyboard
-       JUST_ACTIVATED = bge.logic.KX_INPUT_JUST_ACTIVATED
-
-       if keyboard.events[bge.events.WKEY] == JUST_ACTIVATED:
-               print("Activate Forward!")
-       if keyboard.events[bge.events.SKEY] == JUST_ACTIVATED:
-               print("Activate Backward!")
-       if keyboard.events[bge.events.AKEY] == JUST_ACTIVATED:
-               print("Activate Left!")
-       if keyboard.events[bge.events.DKEY] == JUST_ACTIVATED:
-               print("Activate Right!")
+   # Set a connected keyboard sensor to accept F1
+   import bge
+
+   co = bge.logic.getCurrentController()
+   # 'Keyboard' is a keyboard sensor
+   sensor = co.sensors["Keyboard"]
+   sensor.key = bge.events.F1KEY
+
+   code-block:: python
+
+   # Do the all keys thing
+   import bge
+
+   co = bge.logic.getCurrentController()
+   # 'Keyboard' is a keyboard sensor
+   sensor = co.sensors["Keyboard"]
+
+   for key,status in sensor.events:
+       # key[0] == bge.events.keycode, key[1] = status
+       if status == bge.logic.KX_INPUT_JUST_ACTIVATED:
+               if key == bge.events.WKEY:
+                       # Activate Forward!
+               if key == bge.events.SKEY:
+                       # Activate Backward!
+               if key == bge.events.AKEY:
+                       # Activate Left!
+               if key == bge.events.DKEY:
+                       # Activate Right!
+
+   code-block:: python
+
+   # The all keys thing without a keyboard sensor (but you will
+   # need an always sensor with pulse mode on)
+   import bge
+
+   # Just shortening names here
+   keyboard = bge.logic.keyboard
+   JUST_ACTIVATED = bge.logic.KX_INPUT_JUST_ACTIVATED
+
+   if keyboard.events[bge.events.WKEY] == JUST_ACTIVATED:
+       print("Activate Forward!")
+   if keyboard.events[bge.events.SKEY] == JUST_ACTIVATED:
+       print("Activate Backward!")
+   if keyboard.events[bge.events.AKEY] == JUST_ACTIVATED:
+       print("Activate Left!")
+   if keyboard.events[bge.events.DKEY] == JUST_ACTIVATED:
+       print("Activate Right!")
 
 
 *********
diff --git a/doc/python_api/rst/bge.texture.rst 
b/doc/python_api/rst/bge.texture.rst
index 9d6166b..0c049a5 100644
--- a/doc/python_api/rst/bge.texture.rst
+++ b/doc/python_api/rst/bge.texture.rst
@@ -8,13 +8,16 @@ Introduction
 
 The bge.texture module allows you to manipulate textures during the game.
 
-Several sources for texture are possible: video files, image files, video 
capture, memory buffer, camera render or a mix of that.
+Several sources for texture are possible: video files, image files, video 
capture, memory buffer,
+camera render or a mix of that.
 
 The video and image files can be loaded from the internet using an URL instead 
of a file name.
 
-In addition, you can apply filters on the images before sending them to the 
GPU, allowing video effect: blue screen, color band, gray, normal map.
+In addition, you can apply filters on the images before sending them to the 
GPU, allowing video effect:
+blue screen, color band, gray, normal map.
 
-bge.texture uses FFmpeg to load images and videos. All the formats and codecs 
that FFmpeg supports are supported by this module, including but not limited to:
+bge.texture uses FFmpeg to load images and videos.
+All the formats and codecs that FFmpeg supports are supported by this module, 
including but not limited to:
 
 * AVI
 * Ogg
@@ -39,14 +42,14 @@ When the texture object is deleted, the new texture is 
deleted and the old textu
 .. include:: ../examples/bge.texture.py
    :start-line: 1
    :end-line: 5
-   
+
 .. literalinclude:: ../examples/bge.texture.py
    :lines: 7-
 
 .. include:: ../examples/bge.texture.1.py
    :start-line: 1
    :end-line: 6
-   
+
 .. literalinclude:: ../examples/bge.texture.1.py
    :lines: 8-
 
@@ -58,6 +61,7 @@ When the texture object is deleted, the new texture is 
deleted and the old textu
 .. literalinclude:: ../examples/bge.texture.2.py
    :lines: 8-
 
+
 *************
 Video classes
 *************
@@ -65,7 +69,7 @@ Video classes
 .. class:: VideoFFmpeg(file, capture=-1, rate=25.0, width=0, height=0)
 
    FFmpeg video source.
-      
+
    :arg file: Path to the video to load; if capture >= 0 on Windows, this 
parameter will not be used.
    :type file: str
    :arg capture: Capture device number; if >= 0, the corresponding webcam will 
be used. (optional)
@@ -80,14 +84,14 @@ Video classes
    .. attribute:: status
 
       Video status. (readonly)
-      
+
       :type: int
       :value: see `FFmpeg Video and Image Status`_.
 
    .. attribute:: range
 
       Replay range.
-      
+
       :type: sequence of two floats
 
    .. attribute:: repeat
@@ -111,33 +115,33 @@ Video classes
    .. attribute:: image
 
       Image data. (readonly)
-      
+
       :type: :class:`~bgl.Buffer` or None
 
    .. attribute:: size
 
       Image size. (readonly)
-      
+
       :type: tuple of two ints
 
    .. attribute:: scale
 
       Fast scale of image (near neighbour).
-      
+
       :type: bool
 
    .. attribute:: flip
 
       Flip image vertically.
-      
+
       :type: bool
 
    .. attribute:: filter
 
       Pixel filter.
-      
+
       :type: one of...
-      
+
          * :class:`FilterBGR24`
          * :class:`FilterBlueScreen`
          * :class:`FilterColor`
@@ -162,21 +166,21 @@ Video classes
    .. method:: play()
 
       Play (restart) video.
-      
+
       :return: Whether the video was ready or stopped.
       :rtype: bool
 
    .. method:: pause()
 
       Pause video.
-      
+
       :return: Whether the video was playing.
       :rtype: bool
 
    .. method:: stop()
 
       Stop video (play will replay it from start).
-      
+
       :return: Whether the video was playing.
       :rtype: bool
 
@@ -196,6 +200,7 @@ Video classes
       :return: see `FFmpeg Video and Image Status`_.
       :rtype: int
 
+
 *************
 Image classes
 *************
@@ -203,14 +208,14 @@ Image classes
 .. class:: ImageFFmpeg(file)
 
    FFmpeg image source.
-      
+
    :arg file: Path to the image to load.
    :type file: str
 
    .. attribute:: status
 
       Image status. (readonly)
-      
+
       :type: int
       :value: see `FFmpeg Video and Image Status`_.
 
@@ -223,33 +228,33 @@ Image classes
    .. attribute:: image
 
       Image data. (readonly)
-      
+
       :type: :class:`~bgl.Buffer` or None
 
    .. attribute:: size
 
       Image size. (readonly)
-      
+
       :type: tuple of two ints
 
    .. attribute:: scale
 
       Fast scale of image (near neighbour).
-      
+
       :type: bool
 
    .. attribute:: flip
 
       Flip image vertically.
-      
+
       :type: bool
 
    .. attribute:: filter
 
       Pixel filter.
-      
+
       :type: one of...
-      
+
          * :class:`FilterBGR24`
          * :class:`FilterBlueScreen`
          * :class:`FilterColor`
@@ -275,14 +280,14 @@ Image classes
    .. method:: reload(newname=None)
 
       Reload image, i.e. reopen it.
-      
+
       :arg newname: Path to a new image. (optional)
       :type newname: str
 
 .. class:: ImageBuff(width, height, color=0, scale=False)
 
    Image source from image buffer.
-   
+
    :arg width: Width of the image.
    :type width: int
    :arg height: Height of the image.
@@ -296,9 +301,9 @@ Image classes
    .. attribute:: filter
 
       Pixel filter.
-      
+
       :type: one of...
-      
+
          * :class:`FilterBGR24`
          * :class:`FilterBlueScreen`
          * :class:`FilterColor`
@@ -311,19 +316,19 @@ Image classes
    .. attribute:: flip
 
       Flip image vertically.
-      
+
       :type: bool
 
    .. attribute:: image
 
       Image data. (readonly)
-      
+
       :type: :class:`~bgl.Buffer` or None
 
    .. method:: load(imageBuffer, width, height)
 
       Load image from buffer.
-      
+
       :arg imageBuffer: Buffer to load the image from.
       :type imageBuffer: :class:`~bgl.Buffer` or Python object implementing 
the buffer protocol (f.ex. bytes)
       :arg width: Width of the image to load.
@@ -334,9 +339,10 @@ Image classes
    .. method:: plot(imageBuffer, width, height, positionX, positionY, 
mode=IMB_BLEND_COPY)
 
       Update image buffer.
-      
+
       :arg imageBuffer: Buffer to load the new data from.
-      :type imageBuffer: :class:`~bgl.Buffer`, :class:`ImageBuff` or Python 
object implementing the buffer protocol (f.ex. bytes)
+      :type imageBuffer: :class:`~bgl.Buffer`, :class:`ImageBuff`
+         or Python object implementing the buffer protocol (f.ex. bytes)
       :arg width: Width of the data to load.
       :type width: int
       :arg height: Height of the data to load.
@@ -347,18 +353,18 @@ Image classes
       :type positionY: int
       :arg mode: Drawing mode, see `Image Blending Modes`_.
       :type mode: int
-      
+
 
    .. attribute:: scale
 
       Fast scale of image (near neighbour).
-      
+
       :type: bool
 
    .. attribute:: size
 
       Image size. (readonly)
-      
+
       :type: tuple of two ints
 
    .. attribute:: valid
@@ -370,10 +376,11 @@ Image classes
 .. class:: ImageMirror(scene, observer, mirror, material=0)
 
    Image source from mirror.
-   
+
    :arg scene: Scene in which the image 

@@ Diff output truncated at 10240 characters. @@

_______________________________________________
Bf-blender-cvs mailing list
[email protected]
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to