This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/source/blender/python/api2_2x
Stephen Swaney bce2c02fdd New Curve method Curve.appendPoint( numcurve, newpoint ) to add
points to a Curve.

New supporting module CurNurb to provide access to the curves in a Curve
and their associated points.

Curve module now supports Python iterator and sequence protocols.
This allows typical python programming idioms using 'for' statement
and the [] operator.

# example 1
for curve in a_curve:
	for point in curve:
		print point

#example 2

curnurb = a_curve[0]
curnurb.append( [1,1,1,1] )

Still under construction.  Epydoc will follow.
2004-07-21 21:01:15 +00:00
..
2004-04-07 22:42:02 +00:00
2004-05-18 03:23:45 +00:00
2004-05-25 02:48:02 +00:00
2004-07-03 05:17:04 +00:00
2004-07-03 05:17:04 +00:00
2004-04-23 13:11:48 +00:00
2004-02-29 13:20:34 +00:00
2004-02-29 13:20:34 +00:00
2004-07-16 03:08:43 +00:00
2004-06-24 09:43:13 +00:00
2003-11-23 17:46:06 +00:00
2004-06-06 22:42:51 +00:00
2004-07-03 05:17:04 +00:00
2004-07-03 05:17:04 +00:00
2003-11-13 17:24:47 +00:00
2004-06-24 09:43:13 +00:00
2004-06-11 13:15:50 +00:00
2004-06-11 13:15:50 +00:00
2004-04-24 20:04:37 +00:00
2004-04-23 13:11:48 +00:00
2004-02-29 13:20:34 +00:00
2003-11-23 17:46:06 +00:00
2004-06-06 22:42:51 +00:00
2004-04-19 06:57:41 +00:00
2004-04-25 14:43:21 +00:00
2004-02-29 13:20:34 +00:00
2004-01-15 03:46:47 +00:00
2003-09-03 04:13:08 +00:00
2004-07-03 05:17:04 +00:00
2004-04-25 05:18:43 +00:00
2004-04-25 05:18:43 +00:00
2004-07-16 03:08:43 +00:00
2004-05-22 20:25:22 +00:00
2003-11-23 17:46:06 +00:00
2004-07-03 05:17:04 +00:00
2004-07-03 05:17:04 +00:00