Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/BKE_node.h
| Show First 20 Lines • Show All 675 Lines • ▼ Show 20 Lines | struct bNodeLink *nodeAddLink(struct bNodeTree *ntree, | ||||
| struct bNode *fromnode, | struct bNode *fromnode, | ||||
| struct bNodeSocket *fromsock, | struct bNodeSocket *fromsock, | ||||
| struct bNode *tonode, | struct bNode *tonode, | ||||
| struct bNodeSocket *tosock); | struct bNodeSocket *tosock); | ||||
| void nodeRemLink(struct bNodeTree *ntree, struct bNodeLink *link); | void nodeRemLink(struct bNodeTree *ntree, struct bNodeLink *link); | ||||
| void nodeRemSocketLinks(struct bNodeTree *ntree, struct bNodeSocket *sock); | void nodeRemSocketLinks(struct bNodeTree *ntree, struct bNodeSocket *sock); | ||||
| void nodeMuteLinkToggle(struct bNodeTree *ntree, struct bNodeLink *link); | void nodeMuteLinkToggle(struct bNodeTree *ntree, struct bNodeLink *link); | ||||
| bool nodeLinkIsHidden(const struct bNodeLink *link); | bool nodeLinkIsHidden(const struct bNodeLink *link); | ||||
| bool nodeLinkIsSelected(const struct bNodeLink *link); | |||||
| void nodeInternalRelink(struct bNodeTree *ntree, struct bNode *node); | void nodeInternalRelink(struct bNodeTree *ntree, struct bNode *node); | ||||
| void nodeToView(const struct bNode *node, float x, float y, float *rx, float *ry); | void nodeToView(const struct bNode *node, float x, float y, float *rx, float *ry); | ||||
| void nodeFromView(const struct bNode *node, float x, float y, float *rx, float *ry); | void nodeFromView(const struct bNode *node, float x, float y, float *rx, float *ry); | ||||
| bool nodeAttachNodeCheck(const struct bNode *node, const struct bNode *parent); | bool nodeAttachNodeCheck(const struct bNode *node, const struct bNode *parent); | ||||
| void nodeAttachNode(struct bNode *node, struct bNode *parent); | void nodeAttachNode(struct bNode *node, struct bNode *parent); | ||||
| void nodeDetachNode(struct bNode *node); | void nodeDetachNode(struct bNode *node); | ||||
| ▲ Show 20 Lines • Show All 885 Lines • Show Last 20 Lines | |||||