Docs: include mathutils.interpolate
This commit is contained in:
@@ -263,8 +263,9 @@ else:
|
|||||||
"gpu",
|
"gpu",
|
||||||
"gpu.offscreen",
|
"gpu.offscreen",
|
||||||
"mathutils",
|
"mathutils",
|
||||||
"mathutils.geometry",
|
|
||||||
"mathutils.bvhtree",
|
"mathutils.bvhtree",
|
||||||
|
"mathutils.geometry",
|
||||||
|
"mathutils.interpolate",
|
||||||
"mathutils.kdtree",
|
"mathutils.kdtree",
|
||||||
"mathutils.noise",
|
"mathutils.noise",
|
||||||
"freestyle",
|
"freestyle",
|
||||||
@@ -1663,7 +1664,11 @@ def write_rst_contents(basepath):
|
|||||||
|
|
||||||
standalone_modules = (
|
standalone_modules = (
|
||||||
# mathutils
|
# mathutils
|
||||||
"mathutils", "mathutils.geometry", "mathutils.bvhtree", "mathutils.kdtree", "mathutils.noise",
|
"mathutils",
|
||||||
|
"mathutils.geometry",
|
||||||
|
"mathutils.bvhtree", "mathutils.kdtree",
|
||||||
|
"mathutils.interpolate",
|
||||||
|
"mathutils.noise",
|
||||||
# misc
|
# misc
|
||||||
"freestyle", "bgl", "blf",
|
"freestyle", "bgl", "blf",
|
||||||
"gpu", "gpu.offscreen",
|
"gpu", "gpu.offscreen",
|
||||||
@@ -1820,6 +1825,7 @@ def write_rst_importable_modules(basepath):
|
|||||||
"mathutils.geometry" : "Geometry Utilities",
|
"mathutils.geometry" : "Geometry Utilities",
|
||||||
"mathutils.bvhtree" : "BVHTree Utilities",
|
"mathutils.bvhtree" : "BVHTree Utilities",
|
||||||
"mathutils.kdtree" : "KDTree Utilities",
|
"mathutils.kdtree" : "KDTree Utilities",
|
||||||
|
"mathutils.interpolate": "Interpolation Utilities",
|
||||||
"mathutils.noise" : "Noise Utilities",
|
"mathutils.noise" : "Noise Utilities",
|
||||||
"freestyle" : "Freestyle Module",
|
"freestyle" : "Freestyle Module",
|
||||||
"freestyle.types" : "Freestyle Types",
|
"freestyle.types" : "Freestyle Types",
|
||||||
|
@@ -1046,8 +1046,8 @@ static void rna_def_font(BlenderRNA *UNUSED(brna), StructRNA *srna)
|
|||||||
RNA_def_property_string_maxlength(prop, MAX_ID_NAME - 2);
|
RNA_def_property_string_maxlength(prop, MAX_ID_NAME - 2);
|
||||||
RNA_def_property_ui_text(prop, "Object Font",
|
RNA_def_property_ui_text(prop, "Object Font",
|
||||||
"Use Objects as font characters (give font objects a common name "
|
"Use Objects as font characters (give font objects a common name "
|
||||||
"followed by the character they represent, eg. 'family_a', 'family_b', etc, "
|
"followed by the character they represent, eg. 'family-a', 'family-b', etc, "
|
||||||
"set this setting to 'family_', and turn on Vertex Duplication)");
|
"set this setting to 'family-', and turn on Vertex Duplication)");
|
||||||
RNA_def_property_update(prop, 0, "rna_Curve_update_data");
|
RNA_def_property_update(prop, 0, "rna_Curve_update_data");
|
||||||
|
|
||||||
prop = RNA_def_property(srna, "body", PROP_STRING, PROP_NONE);
|
prop = RNA_def_property(srna, "body", PROP_STRING, PROP_NONE);
|
||||||
|
Reference in New Issue
Block a user