Make Format Changes

Only formatting changes found by running "make format", no functional
changes

Committed without review, but with verbal approval by Hans Goudey
This commit is contained in:
Harley Acheson 2022-03-19 10:24:56 -07:00
parent f381c73a21
commit 873801d25e
3 changed files with 4 additions and 10 deletions

View File

@ -1711,7 +1711,6 @@ void blo_do_versions_290(FileData *fd, Library *UNUSED(lib), Main *bmain)
}
}
}
}
if (!MAIN_VERSION_ATLEAST(bmain, 293, 10)) {

View File

@ -293,11 +293,8 @@ void WM_OT_obj_export(struct wmOperatorType *ot)
0.01,
1000.0f);
/* File Writer options. */
RNA_def_boolean(ot->srna,
"apply_modifiers",
true,
"Apply Modifiers",
"Apply modifiers to exported meshes");
RNA_def_boolean(
ot->srna, "apply_modifiers", true, "Apply Modifiers", "Apply modifiers to exported meshes");
RNA_def_enum(ot->srna,
"export_eval_mode",
io_obj_export_evaluation_mode,

View File

@ -12,7 +12,6 @@
#include "node_geometry_util.hh"
namespace blender::nodes::node_geo_curve_to_points_cc {
NODE_STORAGE_FUNCS(NodeGeometryCurveToPoints)
@ -64,8 +63,8 @@ static void node_update(bNodeTree *ntree, bNode *node)
}
static void curve_create_default_rotation_attribute(Span<float3> tangents,
Span<float3> normals,
MutableSpan<float3> rotations)
Span<float3> normals,
MutableSpan<float3> rotations)
{
threading::parallel_for(IndexRange(rotations.size()), 512, [&](IndexRange range) {
for (const int i : range) {
@ -75,7 +74,6 @@ static void curve_create_default_rotation_attribute(Span<float3> tangents,
});
}
static Array<int> calculate_spline_point_offsets(GeoNodeExecParams &params,
const GeometryNodeCurveResampleMode mode,
const CurveEval &curve,