| 116 | |
| 117 | template <typename T> |
| 118 | Vector4<T> ToVector4(const pxr::GfVec4f& v) |
| 119 | { |
| 120 | return Vector4<T>{ |
| 121 | static_cast<T>(v[0]), |
| 122 | static_cast<T>(v[1]), |
| 123 | static_cast<T>(v[2]), |
| 124 | static_cast<T>(v[3]), |
| 125 | }; |
| 126 | } |
| 127 | |
| 128 | template <typename T> |
| 129 | Vector4<T> ToVector4(const pxr::GfVec4d& v) |
nothing calls this directly
no outgoing calls
no test coverage detected