Home
last modified time | relevance | path

Searched refs:FEdgeSmooth (Results 1 – 11 of 11) sorted by relevance

/dports/graphics/blender/blender-2.91.0/source/blender/freestyle/intern/view_map/
H A DSilhouette.h1294 class FEdgeSmooth : public FEdge {
1315 inline FEdgeSmooth() : FEdge() in FEdgeSmooth() function
1333 inline FEdgeSmooth(FEdgeSmooth &iBrother) : FEdge(iBrother) in FEdgeSmooth() function
1343 virtual ~FEdgeSmooth() in ~FEdgeSmooth()
1350 FEdge *clone = new FEdgeSmooth(*this); in duplicate()
1663 newEdge = new FEdgeSmooth((*sv), svB); in SplitEdge()
1664 FEdgeSmooth *se = dynamic_cast<FEdgeSmooth *>(newEdge); in SplitEdge()
1665 FEdgeSmooth *fes = dynamic_cast<FEdgeSmooth *>(fe); in SplitEdge()
1721 FEdgeSmooth *se = dynamic_cast<FEdgeSmooth *>(newEdge); in SplitEdgeIn2()
1722 FEdgeSmooth *fes = dynamic_cast<FEdgeSmooth *>(ioEdge); in SplitEdgeIn2()
[all …]
H A DViewMapBuilder.cpp66 FEdgeSmooth *fes = dynamic_cast<FEdgeSmooth *>(fe); in findOccludee()
203 FEdgeSmooth *fes = dynamic_cast<FEdgeSmooth *>(fe); in findOccludee()
250 FEdgeSmooth *fes = dynamic_cast<FEdgeSmooth *>(fe); in computeVisibility()
1314 FEdgeSmooth *fes = dynamic_cast<FEdgeSmooth *>(fe); in computeCusps()
1908 FEdgeSmooth *fes = dynamic_cast<FEdgeSmooth *>(fe); in FindOccludee()
2031 FEdgeSmooth *fes = dynamic_cast<FEdgeSmooth *>(fe); in FindOccludee()
2106 FEdgeSmooth *fes = dynamic_cast<FEdgeSmooth *>(fe); in ComputeRayCastingVisibility()
H A DViewMapIO.cpp231 FEdgeSmooth *fesmooth = NULL; in load()
234 fesmooth = dynamic_cast<FEdgeSmooth *>(fe); in load()
707 FEdgeSmooth *fesmooth = dynamic_cast<FEdgeSmooth *>(fe); in save()
1005 FEdgeSmooth *fes = new FEdgeSmooth; in load()
H A DSilhouette.cpp418 const FrsMaterial &FEdgeSmooth::frs_material() const in frs_material()
H A DViewEdgeXBuilder.cpp471 FEdgeSmooth *fe; in BuildSmoothFEdge()
540 fe = new FEdgeSmooth(va, vb); in BuildSmoothFEdge()
H A DFunctions0D.cpp315 result = ((FEdgeSmooth *)fe1)->frs_material(); in operator ()()
/dports/graphics/blender/blender-2.91.0/source/blender/freestyle/intern/python/Interface1D/FEdge/
H A DBPy_FEdgeSmooth.cpp64 self->fes = new FEdgeSmooth(); in FEdgeSmooth_init()
67 self->fes = new FEdgeSmooth(*(((BPy_FEdgeSmooth *)obj1)->fes)); in FEdgeSmooth_init()
79 self->fes = new FEdgeSmooth(((BPy_SVertex *)obj1)->sv, ((BPy_SVertex *)obj2)->sv); in FEdgeSmooth_init()
H A DBPy_FEdgeSmooth.h41 FEdgeSmooth *fes;
/dports/graphics/blender/blender-2.91.0/release/scripts/freestyle/modules/freestyle/
H A Dtypes.py123 FEdgeSmooth,
/dports/graphics/blender/blender-2.91.0/source/blender/freestyle/intern/python/
H A DBPy_Convert.cpp150 if (typeid(if1D) == typeid(FEdgeSmooth)) { in Any_BPy_Interface1D_from_Interface1D()
151 return BPy_FEdgeSmooth_from_FEdgeSmooth(dynamic_cast<FEdgeSmooth &>(if1D)); in Any_BPy_Interface1D_from_Interface1D()
169 if (typeid(fe) == typeid(FEdgeSmooth)) { in Any_BPy_FEdge_from_FEdge()
170 return BPy_FEdgeSmooth_from_FEdgeSmooth(dynamic_cast<FEdgeSmooth &>(fe)); in Any_BPy_FEdge_from_FEdge()
231 PyObject *BPy_FEdgeSmooth_from_FEdgeSmooth(FEdgeSmooth &fes) in BPy_FEdgeSmooth_from_FEdgeSmooth()
H A DBPy_Convert.h111 PyObject *BPy_FEdgeSmooth_from_FEdgeSmooth(FEdgeSmooth &fes);