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

« back to all changes in this revision

Viewing changes to source/blender/python/api2_2x/BezTriple.c

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * $Id: BezTriple.c,v 1.25 2006/08/13 10:13:19 campbellbarton Exp $
 
2
 * $Id: BezTriple.c,v 1.26 2007/03/15 01:09:11 campbellbarton Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
646
646
 
647
647
 
648
648
/*****************************************************************************/
649
 
/* Function:    BezTriple_CheckPyObject                                     */
650
 
/* Description: This function returns true when the given PyObject is of the */
651
 
/*              type BezTriple. Otherwise it will return false.             */
652
 
/*****************************************************************************/
653
 
int BezTriple_CheckPyObject( PyObject * pyobj )
654
 
{
655
 
        return ( pyobj->ob_type == &BezTriple_Type );
656
 
}
657
 
 
658
 
/*****************************************************************************/
659
649
/* Function:    BezTriple_FromPyObject                                      */
660
650
/* Description: This function returns the Blender beztriple from the given   */
661
651
/*              PyObject.                                                    */