soc-2008-mxcurioni: moved namespace collision resolution to the freestyle_init.py (for Curve, Material and Noise)

This commit is contained in:
Maxime Curioni
2008-07-31 11:59:06 +00:00
parent f09f89d5dc
commit 6a6c23ecd8
9 changed files with 424 additions and 424 deletions

View File

@@ -175,12 +175,12 @@ PyObject * FEdgeSharp_bMaterialIndex( BPy_FEdgeSharp *self ) {
PyObject * FEdgeSharp_aMaterial( BPy_FEdgeSharp *self ) {
Material m( self->fes->aMaterial() );
return BPy_FrsMaterial_from_Material(m);
return BPy_Material_from_Material(m);
}
PyObject * FEdgeSharp_bMaterial( BPy_FEdgeSharp *self ) {
Material m( self->fes->aMaterial() );
return BPy_FrsMaterial_from_Material(m);
return BPy_Material_from_Material(m);
}
PyObject * FEdgeSharp_setNormalA( BPy_FEdgeSharp *self, PyObject *args ) {