Cleanup: Add documentation to curve legacy conversion functions

This commit is contained in:
Hans Goudey 2023-01-16 12:06:29 -06:00
parent b82f7814c4
commit a219507d57
1 changed files with 7 additions and 0 deletions

View File

@ -13,7 +13,14 @@ struct Curves;
namespace blender::bke {
/**
* Convert the old curve type to the new data type. Caller owns the returned pointer.
*/
Curves *curve_legacy_to_curves(const Curve &curve_legacy);
/**
* Convert the old curve type to the new data type using a specific list of #Nurb for the actual
* geometry data. Caller owns the returned pointer.
*/
Curves *curve_legacy_to_curves(const Curve &curve_legacy, const ListBase &nurbs_list);
} // namespace blender::bke