MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/Imath / extractSHRT33

Function extractSHRT33

src/python/PyImath/PyImathMatrix33.cpp:278–290  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

276
277template <class T>
278static int
279extractSHRT33(Matrix33<T> &mat, Vec2<T> &s, Vec2<T> &h, Vec2<T> &r, Vec2<T> &t, int exc = 1)
280{
281 MATH_EXC_ON;
282 T hTmp, rTmp;
283
284 int b = IMATH_NAMESPACE::extractSHRT(mat, s, hTmp, rTmp, t, exc);
285
286 h.setValue(hTmp, T (0));
287 r.setValue(rTmp, T (0));
288
289 return b;
290}
291
292template <class T>
293static void

Callers

nothing calls this directly

Calls 3

extractSHRTFunction · 0.85
setValueMethod · 0.80
TClass · 0.50

Tested by

no test coverage detected