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>2022-09-02 22:09:32 +0300
committerHans Goudey <h.goudey@me.com>2022-09-02 22:09:41 +0300
commit86e7aaead29b22dee7949f49498152c59395258f (patch)
tree1ad1d2b4fa18420a170ac7243639be0172ec5143 /source/blender/editors/space_node/node_intern.hh
parent58c650a44c251a41c89375d697efdf07153016e0 (diff)
Cleanup: Use C++ vector types in node editor
Diffstat (limited to 'source/blender/editors/space_node/node_intern.hh')
-rw-r--r--source/blender/editors/space_node/node_intern.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_node/node_intern.hh b/source/blender/editors/space_node/node_intern.hh
index b7fa6ffd807..694c67d160b 100644
--- a/source/blender/editors/space_node/node_intern.hh
+++ b/source/blender/editors/space_node/node_intern.hh
@@ -241,7 +241,7 @@ bool node_link_bezier_points(const View2D *v2d,
bool node_link_bezier_handles(const View2D *v2d,
const SpaceNode *snode,
const bNodeLink &ink,
- float vec[4][2]);
+ std::array<float2, 4> &points);
void draw_nodespace_back_pix(const bContext &C,
ARegion &region,
SpaceNode &snode,