Esempio n. 1
0
static PyObject *Quaternion_deepcopy(QuaternionObject *self, PyObject *args)
{
	if (!mathutils_deepcopy_args_check(args))
		return NULL;
	return Quaternion_copy(self);
}
Esempio n. 2
0
static PyObject *Euler_deepcopy(EulerObject *self, PyObject *args)
{
	if (!mathutils_deepcopy_args_check(args))
		return NULL;
	return Euler_copy(self);
}
static PyObject *Color_deepcopy(ColorObject *self, PyObject *args)
{
	if (!mathutils_deepcopy_args_check(args))
		return NULL;
	return Color_copy(self);
}