| 78 | |
| 79 | template <typename T> |
| 80 | Vector2<T> ToVector2(const pxr::GfVec2f& v) |
| 81 | { |
| 82 | return Vector2<T>{ |
| 83 | static_cast<T>(v[0]), |
| 84 | static_cast<T>(v[1]), |
| 85 | }; |
| 86 | } |
| 87 | |
| 88 | template <typename T> |
| 89 | Vector2<T> ToVector2(const pxr::GfVec2d& v) |
nothing calls this directly
no outgoing calls
no test coverage detected