| 215 | } |
| 216 | |
| 217 | float3 Node::get_float3(const SocketType &input) const |
| 218 | { |
| 219 | assert(is_socket_float3(input)); |
| 220 | return get_socket_value<float3>(this, input); |
| 221 | } |
| 222 | |
| 223 | ustring Node::get_string(const SocketType &input) const |
| 224 | { |
no test coverage detected