| 96 | |
| 97 | template <typename T> |
| 98 | Vector3<T> ToVector3(const pxr::GfVec3f& v) |
| 99 | { |
| 100 | return Vector3<T>{ |
| 101 | static_cast<T>(v[0]), |
| 102 | static_cast<T>(v[1]), |
| 103 | static_cast<T>(v[2]), |
| 104 | }; |
| 105 | } |
| 106 | |
| 107 | template <typename T> |
| 108 | Vector3<T> ToVector3(const pxr::GfVec3d& v) |
nothing calls this directly
no outgoing calls
no test coverage detected