~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/gameengine/Expressions/FloatValue.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Kevin Roy
  • Date: 2011-02-08 22:20:54 UTC
  • mfrom: (1.4.2 upstream)
  • mto: (14.2.6 sid) (1.5.1)
  • mto: This revision was merged to the branch mainline in revision 27.
  • Revision ID: james.westby@ubuntu.com-20110208222054-kk0gwa4bu8h5lyq4
Tags: upstream-2.56.1-beta-svn34076
ImportĀ upstreamĀ versionĀ 2.56.1-beta-svn34076

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
#include "ErrorValue.h"
20
20
#include "VoidValue.h"
21
21
 
22
 
#ifdef HAVE_CONFIG_H
23
 
#include <config.h>
24
 
#endif
25
 
 
26
22
//////////////////////////////////////////////////////////////////////
27
23
// Construction/Destruction
28
24
//////////////////////////////////////////////////////////////////////
314
310
}
315
311
 
316
312
 
317
 
 
 
313
#ifdef WITH_PYTHON
318
314
PyObject* CFloatValue::ConvertValueToPython()
319
315
{
320
316
        return PyFloat_FromDouble(m_float);
321
317
}
322
 
 
 
318
#endif // WITH_PYTHON