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
AgeCommit message (Collapse)Author
2008-04-17Patch from GSR that a) fixes a whole bunch of GPL/BL licenseChris Want
blocks that were previously missed; and b) greatly increase my ohloh stats!
2007-12-17Reverting to 2_2x BPYMartin Poirier
I was careful in selectively rolling back revisions, but if you've committed changes unrelated to BPY mixed with BPY changes, I might have reverted those too, so please double check.
2007-12-13misc warning fixes and one fix for a big in curve allocationCampbell Barton
2007-11-09mistake in last commit Campbell Barton
2007-11-09PyTuple_Pack dosnt work with python 2.3 - removedCampbell Barton
2007-11-06==Python API==Campbell Barton
Blender.Geometry.ClosestPointOnLine(pt, vec1, vec2) -> (pt, lambda) This wraps lambda_cp_line_ex Needed for experemental tree generator
2007-06-16Python PyMethodDef supports single argument methods (METH_O) but was using ↵Campbell Barton
METH_VARARGS everywhere and getting the single args from the tuple. Use METH_O where applicable.
2007-04-28Adding Blender.Geometry function PointInTriangle2DCampbell Barton
2007-03-21moved the boxpacker from PyAPI's Geometry to BLI_boxpack2dCampbell Barton
made LSCM UV Unwrapper use boxpack2d
2007-03-20BoxPack2D example in epydocs, small cleanup on Geometry.cCampbell Barton
2007-03-20Geometry.c - rewrote my python box-packer algo in C,Campbell Barton
packing 2400 rectanges is about 38x faster. Use the C implimentation in uvcalc_lightmap and uvcalc_smart_project Blender.c - filename returning None raises errors with existing scripts, just return "" so string functions on the filename dont raise an error.
2007-03-02various warnings fixes - mostly casting and initialization issuesJoseph Gilbert
2006-12-01clean up some warnings. no executable changes.Stephen Swaney
2006-10-08removed unusued vars from Geometry.cCampbell Barton
uv_archimap still had python based line intersect added plane2matrix function to BPyMathutils added an optional arg to imageFromObjectsOrtho - camera_matrix camera_matrix can be used to define a plane in 3d space where X and Y scale is used to set the width and height of the area to render.
2006-10-07Added python func Blender.Geometry.LineIntersect2D(v1,v2,v3,v4)Campbell Barton
updated archimap and cookie cutter to use it, removed python version from BPyMathutils archimap island merging is noticibly faster
2006-07-03fixed an error in DECREF'ing a variable that could have been null, also gave ↵Campbell Barton
more helpfull error messages, thanks Theeth
2006-07-03Made geometrys polyfill work with all iterators (not just lists) and updated ↵Campbell Barton
bpymeshes ngon to ignore polylines with <3 verts.
2006-07-02=== warnings cleanup ===Andrea Weikert
- removed obvious typo after #include - put back include for using EXPP_check_sequence_consistency and EXPP_ReturnPyObjError
2006-07-02Adding new geometry module, at the moment it only contains polyfill.. more ↵Campbell Barton
commits to come, moving from mathutils.