code cleanup: rename BKE_mesh_to_curve_ex --> BKE_mesh_to_curve_nurblist,

also correct odd indentation.
This commit is contained in:
Campbell Barton
2013-03-15 10:48:48 +00:00
parent 9d060b0333
commit 0807c976f4
19 changed files with 51 additions and 52 deletions

View File

@@ -56,8 +56,9 @@ void TransformWriter::add_node_transform(COLLADASW::Node& node, float mat[4][4],
// XXX Why are joints handled differently ?
node.addMatrix("transform", dmat);
}
else
add_transform(node, loc, rot, scale);
else {
add_transform(node, loc, rot, scale);
}
}
void TransformWriter::add_node_transform_ob(COLLADASW::Node& node, Object *ob, BC_export_transformation_type transformation_type)