This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/include
Ken Hughes 48033e00c4 ===Python API===
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)
2006-05-25 16:45:24 +00:00
..
2005-09-16 20:17:09 +00:00
2006-01-29 22:25:53 +00:00
2006-02-09 11:07:04 +00:00
2006-05-25 16:45:24 +00:00
2006-03-26 21:36:42 +00:00
2005-03-09 19:45:59 +00:00
2006-01-23 22:05:47 +00:00
2006-01-29 22:25:53 +00:00
2004-10-06 18:55:00 +00:00
2006-01-23 22:05:47 +00:00
2005-03-09 19:45:59 +00:00
2006-01-23 22:05:47 +00:00
2006-03-10 18:52:49 +00:00
2006-01-23 22:05:47 +00:00
2005-12-18 13:46:01 +00:00
2006-01-23 22:05:47 +00:00
2006-02-18 13:28:44 +00:00
2005-06-11 05:30:14 +00:00
2003-03-24 01:46:05 +00:00
2005-09-24 09:05:48 +00:00
2005-09-16 20:17:09 +00:00
2006-01-23 22:05:47 +00:00
2006-05-07 14:57:58 +00:00
2006-01-23 22:05:47 +00:00
2006-02-19 14:55:16 +00:00