Listing the "Blender Foundation" as copyright holder implied the Blender Foundation holds copyright to files which may include work from many developers. While keeping copyright on headers makes sense for isolated libraries, Blender's own code may be refactored or moved between files in a way that makes the per file copyright holders less meaningful. Copyright references to the "Blender Foundation" have been replaced with "Blender Authors", with the exception of `./extern/` since these this contains libraries which are more isolated, any changed to license headers there can be handled on a case-by-case basis. Some directories in `./intern/` have also been excluded: - `./intern/cycles/` it's own `AUTHORS` file is planned. - `./intern/opensubdiv/`. An "AUTHORS" file has been added, using the chromium projects authors file as a template. Design task: #110784 Ref !110783.
110 lines
2.4 KiB
C++
110 lines
2.4 KiB
C++
/* SPDX-FileCopyrightText: 2014-2022 Blender Authors
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
/** \file
|
|
* \ingroup freestyle
|
|
*/
|
|
|
|
extern "C" {
|
|
#include <Python.h>
|
|
}
|
|
|
|
#include "Interface0D.h"
|
|
|
|
#include "BLI_utildefines.h"
|
|
|
|
namespace Freestyle {
|
|
|
|
real Interface0D::getX() const
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method getX() not properly overridden");
|
|
return 0;
|
|
}
|
|
|
|
real Interface0D::getY() const
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method getY() not properly overridden");
|
|
return 0;
|
|
}
|
|
|
|
real Interface0D::getZ() const
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method getZ() not properly overridden");
|
|
return 0;
|
|
}
|
|
|
|
Geometry::Vec3r Interface0D::getPoint3D() const
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method getPoint3D() not properly overridden");
|
|
return 0;
|
|
}
|
|
|
|
real Interface0D::getProjectedX() const
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method getProjectedX() not properly overridden");
|
|
return 0;
|
|
}
|
|
|
|
real Interface0D::getProjectedY() const
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method getProjectedY() not properly overridden");
|
|
return 0;
|
|
}
|
|
|
|
real Interface0D::getProjectedZ() const
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method getProjectedZ() not properly overridden");
|
|
return 0;
|
|
}
|
|
|
|
Geometry::Vec2r Interface0D::getPoint2D() const
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method getPoint2D() not properly overridden");
|
|
return 0;
|
|
}
|
|
|
|
FEdge *Interface0D::getFEdge(Interface0D & /*element*/)
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method getFEdge() not properly overridden");
|
|
return nullptr;
|
|
}
|
|
|
|
Id Interface0D::getId() const
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method getId() not properly overridden");
|
|
return 0;
|
|
}
|
|
|
|
Nature::VertexNature Interface0D::getNature() const
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method getNature() not properly overridden");
|
|
return Nature::POINT;
|
|
}
|
|
|
|
SVertex *Interface0D::castToSVertex()
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method castToSVertex() not properly overridden");
|
|
return nullptr;
|
|
}
|
|
|
|
ViewVertex *Interface0D::castToViewVertex()
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method castToViewVertex() not properly overridden");
|
|
return nullptr;
|
|
}
|
|
|
|
NonTVertex *Interface0D::castToNonTVertex()
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method castToNonTVertex() not properly overridden");
|
|
return nullptr;
|
|
}
|
|
|
|
TVertex *Interface0D::castToTVertex()
|
|
{
|
|
PyErr_SetString(PyExc_TypeError, "method castToTVertex() not properly overridden");
|
|
return nullptr;
|
|
}
|
|
|
|
} /* namespace Freestyle */
|