Changeset View
Changeset View
Standalone View
Standalone View
source/blender/editors/include/ED_node.h
| Show First 20 Lines • Show All 58 Lines • ▼ Show 20 Lines | |||||
| /* space_node.c */ | /* space_node.c */ | ||||
| void ED_node_cursor_location_get(const struct SpaceNode *snode, float value[2]); | void ED_node_cursor_location_get(const struct SpaceNode *snode, float value[2]); | ||||
| void ED_node_cursor_location_set(struct SpaceNode *snode, const float value[2]); | void ED_node_cursor_location_set(struct SpaceNode *snode, const float value[2]); | ||||
| int ED_node_tree_path_length(struct SpaceNode *snode); | int ED_node_tree_path_length(struct SpaceNode *snode); | ||||
| void ED_node_tree_path_get(struct SpaceNode *snode, char *value); | void ED_node_tree_path_get(struct SpaceNode *snode, char *value); | ||||
| void ED_node_tree_path_get_fixedbuf(struct SpaceNode *snode, char *value, int max_length); | |||||
| void ED_node_tree_start(struct SpaceNode *snode, | void ED_node_tree_start(struct SpaceNode *snode, | ||||
| struct bNodeTree *ntree, | struct bNodeTree *ntree, | ||||
| struct ID *id, | struct ID *id, | ||||
| struct ID *from); | struct ID *from); | ||||
| void ED_node_tree_push(struct SpaceNode *snode, struct bNodeTree *ntree, struct bNode *gnode); | void ED_node_tree_push(struct SpaceNode *snode, struct bNodeTree *ntree, struct bNode *gnode); | ||||
| void ED_node_tree_pop(struct SpaceNode *snode); | void ED_node_tree_pop(struct SpaceNode *snode); | ||||
| int ED_node_tree_depth(struct SpaceNode *snode); | int ED_node_tree_depth(struct SpaceNode *snode); | ||||
| ▲ Show 20 Lines • Show All 70 Lines • Show Last 20 Lines | |||||