Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2021-03-14 01:39:09 +0300
committerHans Goudey <h.goudey@me.com>2021-03-14 01:39:09 +0300
commitf7a6dd72183ea7e7213c60c7e6aa5df659145614 (patch)
tree3be884fe621cfc70f8b126d6bc962f9c1a7f100a
parent9934a711721332624cb1b73fab37813c4cba7c3b (diff)
Cleanup: remove static
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_transform.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_transform.cc b/source/blender/nodes/geometry/nodes/node_geo_transform.cc
index 539a7551be9..7ef970cbaf7 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_transform.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_transform.cc
@@ -57,10 +57,10 @@ static bool use_translate(const float3 rotation, const float3 scale)
return true;
}
-static void transform_mesh(Mesh *mesh,
- const float3 translation,
- const float3 rotation,
- const float3 scale)
+void transform_mesh(Mesh *mesh,
+ const float3 translation,
+ const float3 rotation,
+ const float3 scale)
{
/* Use only translation if rotation and scale are zero. */
if (use_translate(rotation, scale)) {