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
path: root/doc
AgeCommit message (Collapse)Author
2012-03-10code cleanup: remove unused variable assignents and added bmesh submodule ↵Campbell Barton
links, doc correction reported by dfelinto.
2012-03-08== Python API docs ==Luca Bonavita
- Enhanced the -T option: - we can now choose among custom themes (now 'blender-org' and later 'naiad') and Sphinx internal themes (use -h option to see which ones) - choosing a custom theme will copy the theme dir to the output dir - Added two new command line options: -N: Add the theme name to the html dir name For example, if we choose the theme 'haiku' with using -N will create html files in sphinx-out_haiku/ Useful to test separate themes without overwriting the smae folder each time -B: Builds the html docs running sphinx-build This is useful to avoid runing sphinx with a separate shell command - Fixed the URL in undocumented_message()
2012-03-08style cleanup: pep8 + picky editsCampbell Barton
2012-03-07== Python API docs ==Luca Bonavita
(sphinx_doc_gen.py) - file reorganization to use more functions (easier to read) - adapting to work after a recent commit that made some of the members of bpy.app.* output bytes instead of strings (see [#30154]) - a couple of new command line optionsto avoid editing the script: -T: let you choose the sphinx theme: the theme dir get copied in the destination dir -b: choose if we want the bpy module page or not Current command line arguments optional arguments: -h, --help show this help message and exit -o OUTPUT_DIR, --output OUTPUT_DIR Path of the API docs (default=<script dir>) -T SPHINX_THEME, --sphinxtheme SPHINX_THEME Sphinx theme (default='default') -f, --fullrebuild Rewrite all rst files in sphinx-in/ (default=False) -t, --testdump Dumps a small part of the API (default=False) -b, --bpy Write the rst file of the bpy module (default=False) (rst/info_best_practice.rst) - fixed a typo
2012-03-05== Python API docs ==Luca Bonavita
Adding two new command line options (-f = full rebuild, -t = testing) so that we don't have to edit the file each time
2012-03-03option for the Armature Actuator to change the influence of a bone constraint.Dalai Felinto
Also adds DampedTrackTo to the list of supported constraints in the BGE Test file: http://www.pasteall.org/blend/11715 Patch developed as part of a project to NF-UBC Nereus Program. Development time 'sponsored' by the project. www.nereusprogram.org
2012-03-02== Python API docs ==Luca Bonavita
- Works in macOSX now (hackish) (TODO: not check for OSX explicitly but handle exception if it fails) - We can now generate rst files outside out of the source (was annoying) - Moved some vars at module level - Managing the command line args with argparse. Example usage: ./cmake/bin/blender -b -P ./blender/doc/python_api/sphinx_doc_gen.py -- -o ./python_api
2012-02-28move bmesh wiki docs into bmesh header and update doxygen.Campbell Barton
also have doxygen ignore *.py files and fix some warnings.
2012-02-24bmesh docs now written in sphinx doc generator.Campbell Barton
* http://www.blender.org/documentation/blender_python_api_2_62_0/bmesh.types.html * http://www.blender.org/documentation/blender_python_api_2_62_0/bmesh.utils.html
2012-02-18remove section in gotcha's doc about matrix col/row order since this has ↵Campbell Barton
been changed.
2012-02-15autogenerated rna api changelog (no rebuilds needed)Campbell Barton
2012-02-12py api docs - remove sphinx .doctree before zipping, saves some space 18mb ↵Campbell Barton
--> 3.1 mb
2012-02-10Disable PDF doc since its giving errors with latex indentation.Campbell Barton
upload the zipped version of HTML docs instead.
2012-02-09Style cleanup of gpu rst file.Campbell Barton
2012-02-03Code Cleanup: check is / is not when comparing singletons.Campbell Barton
2012-02-01added note in docs about not beaing able to create new data by calling the ↵Campbell Barton
class direct.
2012-01-30pydoc cleanup + remove unused bge.logic constantsDalai Felinto
+ adding PINGPONG as action actuator constant in rst
2012-01-23rst bge touch ups: making the title of the examples slightly more noticeableDalai Felinto
- it's still not correct, comparing to the other examples, but at least it looks okish. - fixed some small typos
2012-01-23Committing patch "[#27676] Change window size/resolution in realtime" by me.Mitchell Stokes
Description: This patch allows the user to change the size of the window (or the resolution in fullscreen mode) using the new bge.render.setWindowSize() method. This only works in the Blenderplayer since it doesn't make a whole lot of sense for the embedded player.
2012-01-22Committing patch "[#29763] Adding an active_events property to ↵Mitchell Stokes
SCA_PythonKeyboard and SCA_PythonMouse" Here is the description: As the summary says, this patch adds a new event to both SCA_PythonKeyboard and SCA_PythonMouse. This property is similar to the events property that both have, but it only returns events which are not KX_NO_INPUTSTATUS. This moves the "no input" check from Python to C, which gave my input handling code a 2x speed up. Python sucks (performance-wise) with iterating lists and SCA_PythonKeyboard has close to 200 events (I think something like 177, but I don't know for sure).
2012-01-22cucumber merge: world scaling + video texture constantsDalai Felinto
revisions: 38166,38167,38177,38179,38180,38187,38242 To be implemented after merge: 1) add pydocs(rst) for the video texture new defines 2) see if a NodeSetLocalMatrix would fit well #43439 by kupoman Changing the worldTransform and localTransform python attributes to use BLI_math to simplify the code #38242 by kupoman Adding the constants SOURCE_ERROR, SOURCE_EMPTY, SOURCE_READY, SOURCE_PLAYING, SOURCE_STOPPED to the video texture module. Updates to the documentation will follow after a merge with trunk #38187 by kupoman Updates to the documentation to reflect that worldScale is now writable, and added localTransform and worldTransform to KX_GameObject. #38180 by kupoman The Transform attribute of KX_GameObject was based on world space data. I converted that one to worldTransform, and added a localTransform for local space transform information. #38179 by kupoman Fixed the transform attribute of KX_GameObject's set method to properly deal with negative scaling. #38177 by kupoman Updated the transform property on KX_GameObject so that it is now read/write, and added the corresponding set method. Also simplified the get method by calling GetOpenGLMatrix instead of making the matrix myself. #38167 by kupoman Adding a read only transform attribute to KX_GameObject that returns a 4x4 matrix representing the object's transformations. #38166 by kupoman Adding a worldScale attribute to KX_GameObject. This attribute scales the object independently of its parent's scale.
2012-01-14remove *.select_inverse operators where the *.select_all operator has an ↵Campbell Barton
invert option.
2012-01-13bge api doc updateDalai Felinto
bge.texture materialId wasn't showing up bge.type was outdated (I removed the glew example, I hope no one mind)
2012-01-13give a more useful error when attempting to opengl render in background mode.Campbell Barton
add some tips to the python docs.
2012-01-12remove blender 2.5 references in docsCampbell Barton
2012-01-05correct api doc examples and a typoCampbell Barton
2012-01-04Correct use of your vs you're in py api docsCampbell Barton
2011-12-23update the api changelog 2.60 --> 2.61Campbell Barton
2011-12-10picky edits & regen man pageCampbell Barton
2011-12-04include mathutils.noise in sphinx docsCampbell Barton
2011-11-28corrections for docsCampbell Barton
2011-11-25blacklist language property for sphinx docs, encoding was messing up PDF ↵Campbell Barton
generation.
2011-11-24pep8 edits and avoid naming conflicts with python builtinsCampbell Barton
2011-11-23Patch #29336: renaming UV (Texture) Layer to UV Map in the user interface,Brecht Van Lommel
by Gaia Clary. Rationale: the name was confusing and not always used consistently, and this map itself is not something that can be layered, rather the map can be used as texture coordinates in some layered setup. The original intent was to indicate this contained more than just UV's, but the game engine settings have already been moved out, and apparently users didn't really get this from the name anyway.
2011-11-19hide overly picky warnings from 'pylint' for pep8 script, indentation edits.Campbell Barton
2011-11-18tab -> spacesCampbell Barton
2011-11-18document py gotchasCampbell Barton
- dont assume you get the data names you ask for - beware of collisions with library names - beware of py modules calling sys.exit
2011-11-17pass encoding to uses of decode() incase the default isnt utf-8. ignore ↵Campbell Barton
decode errors in some cases. This should fix an error with generated qtcreator projects. also replace decoded bytes for unicode escape sequences in the VIEW3D_MT_edit_text_chars menu.
2011-11-15set cycles scripts as pep8 & make some minor changes.Campbell Barton
also update sphinx doc generator.
2011-11-08cmake & pep8 tidy up, also some style edits.Campbell Barton
remove unneeded collection length function.
2011-11-08SVN maintenance.Guillermo S. Romero
2011-11-05use (const char*) rather than (char*) where possible.Campbell Barton
also removed some unused function definitons.
2011-11-05misc doc editsCampbell Barton
- remove recently added sphinx reference workaround. - tested doxygen, correct some warnings, set tab width and added pymathutils group. - added convenience target 'make doc_doxy'
2011-11-04correct some warnings, also sensor_x was being paassed to ↵Campbell Barton
object_camera_matrix(...) for x and y args, looks like an accident
2011-11-04- added docs and examples for bpy.app.handlersCampbell Barton
- correct error in own last commit for BKE_screen_find_big_area()
2011-10-28patch [#29049] Minor phrasing and grammar patchCampbell Barton
2011-10-23Remove some more $Id$ that still were left after r41227 and r41228.Guillermo S. Romero
2011-10-23Remove the svn:keywords property.Guillermo S. Romero
2011-10-23remove $Id: tags after discussion on the mailign list: ↵Campbell Barton
http://markmail.org/message/fp7ozcywxum3ar7n
2011-10-20pass -noaudio when running blender for various utilities - doc-gen and tests.Campbell Barton