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-05-24Python APIKen Hughes
========== Bugfix #6682: some Mesh.Primitive default values didn't match UI values.
2007-05-19(no commit message)Ken Hughes
2007-03-02various warnings fixes - mostly casting and initialization issuesJoseph Gilbert
2006-05-25===Python API===Ken Hughes
Fulfilling a very old feature request: a new Mesh Primitives module is introduced, which gives script writers access to the Blender mesh datablocks created from the "Add->Mesh" menu. You can now do this: from Blender import * me = Mesh.Primitives.UVsphere(10,20,3) # 10 segments, 20 rings, diameter 3 ob = Object.New('Mesh','mySphere') ob.link(me) sc = Scene.GetCurrent() sc.link(ob)