MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / difference

Method difference

Engine/source/ts/tsIntegerSet.cpp:89–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

87}
88
89void TSIntegerSet::difference(const TSIntegerSet & otherSet)
90{
91 for (S32 i=0; i<MAX_TS_SET_DWORDS; i++)
92 bits[i] = (bits[i] | otherSet.bits[i]) & ~(bits[i] & otherSet.bits[i]);
93}
94
95void TSIntegerSet::takeAway(const TSIntegerSet & otherSet)
96{

Callers 1

handleNodeScaleMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected