2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2012-2022 Blender Authors
|
2023-06-14 23:30:43 +10:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
2014-04-17 12:37:08 +09:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup freestyle
|
2014-04-17 12:37:08 +09:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "Predicates0D.h"
|
|
|
|
|
|
|
|
|
|
#include "../python/Director.h"
|
|
|
|
|
|
|
|
|
|
namespace Freestyle {
|
|
|
|
|
|
|
|
|
|
int UnaryPredicate0D::operator()(Interface0DIterator &it)
|
|
|
|
|
{
|
|
|
|
|
return Director_BPy_UnaryPredicate0D___call__(this, it);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int BinaryPredicate0D::operator()(Interface0D &inter1, Interface0D &inter2)
|
|
|
|
|
{
|
|
|
|
|
return Director_BPy_BinaryPredicate0D___call__(this, inter1, inter2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} /* namespace Freestyle */
|