Blender Git Loki

Git Commits -> Revision db6388e

Revision db6388e by Maxime Curioni (master)
July 29, 2008, 05:45 (GMT)
soc-2008-mxcurioni: finished porting the Freestyle API. All of the original classes, except EdgeModifier and TimestampModifier (which aren't even ported via SWIG), are available under the Blender.Freestyle module. Testing of the porting will now begin to make sure the SWIG-less system works as the original.

Quite a few modifications were made to finish the API:
- Freestyle's SConscript was modified to catch all files within the intern/python directory, allowing integration of future shaders implemented in C++.
- the Operators class was ported, with a special care of making its methods static (using the METH_STATIC flag in the tp_methods method definitions)
- all of the type-checking functions [ BPy_[class name]_Check(obj) ] were changed to allow subclasses to be seen as that type too: instead on looking at the ob_type value, the PyObject_IsInstance function is used.
- all of the iterators can now retrieve the object pointed to by the operator, using the getObject() method. A directedViewEdge pair is returned as a list of the two elements in the pair.
- all of the style modules were copied to a style_modules_blender/ folder and were modified to use Freestyle as a Blender's submodule. IntegrationType and MediumType was also integrated (for example, changing MEAN to IntegrationType.MEAN).

Testing now begins. If everything works correctly, I'll move on to lib3ds removal right away.

Commit Details:

Full Hash: db6388e0f2b1e03ff280615fb96b93c565c9b22a
SVN Revision: 15859
Parent Commit: e4677c4
Lines Changed: +5539, -341

50 Added Paths:

/source/blender/freestyle/intern/python/BPy_Operators.h (+34, -0) (View)
/source/blender/freestyle/style_modules_blender/anisotropic_diffusion.py (+75, -0) (View)
/source/blender/freestyle/style_modules_blender/apriori_and_causal_density.py (+45, -0) (View)
/source/blender/freestyle/style_modules_blender/apriori_density.py (+43, -0) (View)
/source/blender/freestyle/style_modules_blender/backbone_stretcher.py (+36, -0) (View)
/source/blender/freestyle/style_modules_blender/blueprint_circles.py (+46, -0) (View)
/source/blender/freestyle/style_modules_blender/blueprint_ellipses.py (+46, -0) (View)
/source/blender/freestyle/style_modules_blender/blueprint_squares.py (+45, -0) (View)
/source/blender/freestyle/style_modules_blender/cartoon.py (+42, -0) (View)
/source/blender/freestyle/style_modules_blender/ChainingIterators.py (+731, -0) (View)
/source/blender/freestyle/style_modules_blender/contour.py (+42, -0) (View)
/source/blender/freestyle/style_modules_blender/curvature2d.py (+60, -0) (View)
/source/blender/freestyle/style_modules_blender/external_contour.py (+43, -0) (View)
/source/blender/freestyle/style_modules_blender/external_contour_sketchy.py (+48, -0) (View)
/source/blender/freestyle/style_modules_blender/external_contour_smooth.py (+44, -0) (View)
/source/blender/freestyle/style_modules_blender/extra-lines.sml (+3, -0) (View)
/source/blender/freestyle/style_modules_blender/Functions0D.py (+81, -0) (View)
/source/blender/freestyle/style_modules_blender/Functions1D.py (+45, -0) (View)
/source/blender/freestyle/style_modules_blender/haloing.py (+50, -0) (View)
/source/blender/freestyle/style_modules_blender/ignore_small_occlusions.py (+41, -0) (View)
/source/blender/freestyle/style_modules_blender/invisible_lines.py (+42, -0) (View)
/source/blender/freestyle/style_modules_blender/japanese_bigbrush.py (+59, -0) (View)
/source/blender/freestyle/style_modules_blender/logical_operators.py (+36, -0) (View)
/source/blender/freestyle/style_modules_blender/long_anisotropically_dense.py (+81, -0) (View)
/source/blender/freestyle/style_modules_blender/multiple_parameterization.py (+51, -0) (View)
/source/blender/freestyle/style_modules_blender/nature.py (+43, -0) (View)
/source/blender/freestyle/style_modules_blender/near_lines.py (+44, -0) (View)
/source/blender/freestyle/style_modules_blender/occluded_by_specific_object.py (+45, -0) (View)
/source/blender/freestyle/style_modules_blender/polygonalize.py (+40, -0) (View)
/source/blender/freestyle/style_modules_blender/PredicatesB1D.py (+70, -0) (View)
/source/blender/freestyle/style_modules_blender/PredicatesU0D.py (+103, -0) (View)
/source/blender/freestyle/style_modules_blender/PredicatesU1D.py (+381, -0) (View)
/source/blender/freestyle/style_modules_blender/qi0.py (+41, -0) (View)
/source/blender/freestyle/style_modules_blender/qi0_not_external_contour.py (+43, -0) (View)
/source/blender/freestyle/style_modules_blender/qi1.py (+42, -0) (View)
/source/blender/freestyle/style_modules_blender/qi2.py (+42, -0) (View)
/source/blender/freestyle/style_modules_blender/sequentialsplit_sketchy.py (+68, -0) (View)
/source/blender/freestyle/style_modules_blender/shaders.py (+1288, -0) (View)
/source/blender/freestyle/style_modules_blender/sketchy_multiple_parameterization.py (+48, -0) (View)
/source/blender/freestyle/style_modules_blender/sketchy_topology_broken.py (+89, -0) (View)
/source/blender/freestyle/style_modules_blender/sketchy_topology_preserved.py (+49, -0) (View)
/source/blender/freestyle/style_modules_blender/split_at_highest_2d_curvatures.py (+40, -0) (View)
/source/blender/freestyle/style_modules_blender/split_at_tvertices.py (+42, -0) (View)
/source/blender/freestyle/style_modules_blender/stroke_texture.py (+43, -0) (View)
/source/blender/freestyle/style_modules_blender/suggestive.py (+43, -0) (View)
/source/blender/freestyle/style_modules_blender/thickness_fof_depth_discontinuity.py (+62, -0) (View)
/source/blender/freestyle/style_modules_blender/tipremover.py (+42, -0) (View)
/source/blender/freestyle/style_modules_blender/tvertex_remover.py (+42, -0) (View)
/source/blender/freestyle/style_modules_blender/uniformpruning_zsort.py (+40, -0) (View)
/source/blender/freestyle/style_modules_blender/vector.py (+241, -0) (View)

164 Modified Paths:

/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_FalseBP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_Length2DBP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_SameShapeIdBP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_TrueBP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_ViewMapGradientNormBP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_BBox.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_BinaryPredicate0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_BinaryPredicate1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_Convert.cpp (+108, -22) (Diff)
/source/blender/freestyle/intern/python/BPy_Convert.h (+23, -7) (Diff)
/source/blender/freestyle/intern/python/BPy_Freestyle.cpp (+2, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_Freestyle.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_FrsMaterial.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_Id.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_IntegrationType.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_Interface0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_Interface1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_Iterator.cpp (+6, -0) (Diff)
/source/blender/freestyle/intern/python/BPy_Iterator.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_MediumType.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_Nature.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_Noise.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_Operators.cpp (+265, -18) (Diff)
/source/blender/freestyle/intern/python/BPy_SShape.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_StrokeAttribute.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_StrokeShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryFunction0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryFunction1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryPredicate0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryPredicate1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_ViewMap.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_ViewShape.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_CurvePoint.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_SVertex.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_ViewVertex.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Interface0D/CurvePoint/BPy_StrokeVertex.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Interface0D/ViewVertex/BPy_NonTVertex.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Interface0D/ViewVertex/BPy_TVertex.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_Curve.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_FEdge.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_ViewEdge.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Interface1D/Curve/BPy_Chain.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSharp.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSmooth.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp (+13, -0) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp (+10, -0) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainSilhouetteIterator.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_CurvePointIterator.cpp (+7, -0) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_CurvePointIterator.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.cpp (+10, -0) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.cpp (+10, -3) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_StrokeVertexIterator.cpp (+9, -0) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_StrokeVertexIterator.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_SVertexIterator.cpp (+9, -0) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_SVertexIterator.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ViewEdgeIterator.cpp (+12, -0) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ViewEdgeIterator.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_BackboneStretcherShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_BezierCurveShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_CalligraphicShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ColorNoiseShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ColorVariationPatternShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstantColorShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstantThicknessShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstrainedIncreasingThicknessShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_fstreamShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_GuidingLinesShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_IncreasingColorShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_IncreasingThicknessShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_PolygonalizationShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_SamplingShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_SpatialNoiseShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_streamShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_StrokeTextureShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_TextureAssignerShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ThicknessNoiseShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ThicknessVariationPatternShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_TipRemoverShader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DEdgeNature.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DFloat.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DId.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DMaterial.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec2f.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec3f.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVectorViewShape.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DViewShape.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_Curvature2DAngleF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_DensityF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetProjectedXF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetProjectedYF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetProjectedZF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetXF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetYF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetZF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_LocalAverageDepthF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_ZDiscontinuityF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetCurvilinearAbscissaF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetParameterF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetViewMapGradientNormF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadCompleteViewMapPixelF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadMapPixelF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadSteerableViewMapPixelF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Id/BPy_ShapeIdF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Material/BPy_MaterialF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Nature_EdgeNature/BPy_CurveNatureF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_unsigned_int/BPy_QuantitativeInvisibilityF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec2f/BPy_Normal2DF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec2f/BPy_VertexOrientation2DF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec3f/BPy_VertexOrientation3DF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_vector_ViewShape/BPy_GetOccludersF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_ViewShape/BPy_GetOccludeeF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_ViewShape/BPy_GetShapeF0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DDouble.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DEdgeNature.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DFloat.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DUnsigned.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec3f.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVectorViewShape.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVoid.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_Curvature2DAngleF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_DensityF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetCompleteViewMapDensityF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetDirectionalViewMapDensityF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetProjectedXF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetProjectedYF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetProjectedZF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetSteerableViewMapDensityF1D.h (+1, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetViewMapGradientNormF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetXF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetYF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetZF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_LocalAverageDepthF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_ZDiscontinuityF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_Nature_EdgeNature/BPy_CurveNatureF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_unsigned_int/BPy_QuantitativeInvisibilityF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_Vec2f/BPy_Normal2DF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_Vec2f/BPy_Orientation2DF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_Vec3f/BPy_Orientation3DF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_vector_ViewShape/BPy_GetOccludeeF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_vector_ViewShape/BPy_GetOccludersF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_vector_ViewShape/BPy_GetShapeF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_void/BPy_ChainingTimeStampF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_void/BPy_IncrementChainingTimeStampF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_void/BPy_TimeStampF1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate0D/BPy_FalseUP0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate0D/BPy_TrueUP0D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ContourUP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_DensityLowerThanUP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_EqualToChainingTimeStampUP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_EqualToTimeStampUP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ExternalContourUP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_FalseUP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_QuantitativeInvisibilityUP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ShapeUP1D.h (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_TrueUP1D.h (+1, -1) (Diff)
/source/blender/freestyle/SConscript (+5, -140) (Diff)
Tehnyt: Miika HämäläinenViimeksi päivitetty: 07.11.2014 14:18MiikaH:n Sivut a.k.a. MiikaHweb | 2003-2021