Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Swaney <sswaney@centurytel.net>2005-06-15 10:22:26 +0400
committerStephen Swaney <sswaney@centurytel.net>2005-06-15 10:22:26 +0400
commit401dfba3051856906c487c4adb85b09358d57f7d (patch)
treed6e2358d847bc8385756f17655248751e5a11dc0 /source/blender/python/api2_2x/doc/Camera.py
parent7eee2e7f8a38aa72695f13a21fe82906a6104cda (diff)
Changes to Documentation Format ONLY.v2.37a
no executable code. Martin noticed many of our bpy instance variables were incorrectly marked as class variables in the doc. This commit essentially changes the title of sections of the doc from Class Variables to Instance Variables. Now that we are adding class or module dictionaries for constants, etc. this is a distinction worth making. Plus it is right.
Diffstat (limited to 'source/blender/python/api2_2x/doc/Camera.py')
-rw-r--r--source/blender/python/api2_2x/doc/Camera.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/python/api2_2x/doc/Camera.py b/source/blender/python/api2_2x/doc/Camera.py
index ac0319f8fff..57a4da9b18e 100644
--- a/source/blender/python/api2_2x/doc/Camera.py
+++ b/source/blender/python/api2_2x/doc/Camera.py
@@ -49,18 +49,18 @@ class Camera:
The Camera Data object
======================
This object gives access to Camera-specific data in Blender.
- @cvar name: The Camera Data name.
- @cvar type: The Camera type: 'persp':0 or 'ortho':1.
- @cvar mode: The mode flags: B{or'ed value}: 'showLimits':1, 'showMist':2.
- @cvar lens: The lens value in [1.0, 250.0], only relevant to *persp*
+ @ivar name: The Camera Data name.
+ @ivar type: The Camera type: 'persp':0 or 'ortho':1.
+ @ivar mode: The mode flags: B{or'ed value}: 'showLimits':1, 'showMist':2.
+ @ivar lens: The lens value in [1.0, 250.0], only relevant to *persp*
cameras.
- @cvar scale: The scale value in [0.01, 1000.00], only relevant to *ortho*
+ @ivar scale: The scale value in [0.01, 1000.00], only relevant to *ortho*
cameras.
- @cvar clipStart: The clip start value in [0.0, 100.0].
- @cvar clipEnd: The clip end value in [1.0, 5000.0].
- @cvar drawSize: The draw size value in [0.1, 10.0].
+ @ivar clipStart: The clip start value in [0.0, 100.0].
+ @ivar clipEnd: The clip end value in [1.0, 5000.0].
+ @ivar drawSize: The draw size value in [0.1, 10.0].
@type ipo: Blender Ipo
- @cvar ipo: The "camera data" ipo linked to this camera data object.
+ @ivar ipo: The "camera data" ipo linked to this camera data object.
@warning: Most member variables assume values in some [Min, Max] interval.
When trying to set them, the given parameter will be clamped to lie in
that range: if val < Min, then val = Min, if val > Max, then val = Max.