~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_curve.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
2
 * blenlib/BKE_curve.h (mar-2001 nzc)
3
3
 *      
4
 
 * $Id: BKE_curve.h,v 1.5 2002/12/27 13:10:09 mein Exp $ 
 
4
 * $Id: BKE_curve.h,v 1.6 2004/12/27 19:28:48 ton Exp $ 
5
5
 *
6
6
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
7
7
 *
42
42
struct BezTriple;
43
43
struct BevList;
44
44
 
 
45
#define KNOTSU(nu)          ( (nu)->orderu+ (nu)->pntsu+ (nu->orderu-1)*((nu)->flagu & 1) )
 
46
#define KNOTSV(nu)          ( (nu)->orderv+ (nu)->pntsv+ (nu->orderv-1)*((nu)->flagv & 1) )
 
47
 
45
48
 
46
49
int copyintoExtendedArray(float *old, int oldx, int oldy, float *newp, int newx, int newy);
47
50
void unlink_curve( struct Curve *cu);