MCPcopy Create free account
hub / github.com/OGSR/OGSR-Engine / dSetZero

Function dSetZero

3rd_party/Src/ode/ode/src/matrix.cpp:30–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28
29
30void dSetZero (dReal *a, int n)
31{
32 dAASSERT (a && n >= 0);
33 while (n > 0) {
34 *(a++) = 0;
35 n--;
36 }
37}
38
39
40void dSetValue (dReal *a, int n, dReal value)

Callers 15

multiply_invM_JTFunction · 0.85
CG_LCPFunction · 0.85
SOR_LCPFunction · 0.85
dxQuickStepperFunction · 0.85
dxGeomMethod · 0.85
dInternalStepIsland_x1Function · 0.85
dInternalStepIsland_x2Function · 0.85
dxGeomTransformMethod · 0.85
computeAABBMethod · 0.85
dInvertPDMatrixFunction · 0.85
checkMassFunction · 0.85
dMassSetZeroFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected