Revenus des patrons : les vrais scandales...
L’INSEE vient de publier une nouvelle étude sur les revenus des patrons indépendants du commerce, de l’industrie, du bâtiment et des services. On peut y apprendre que la moitié de ces patrons gagne moins de 16 300 € par an (moins de 1360 € par mois), soit à peine les deux tiers du smic horaire rapportés au temps de travail. Globalement, le revenu des patrons baisse depuis 2000.
SCollidableObjectTracePacket

HURRRR !
vince Le 08/08/2011 à 10:21 fc43_traceVMA.sh 25/07/2011 1 1 1 0 4 & fc43_traceVMA.sh 25/07/2011 1 1 1 1 4 & fc43_traceVMA.sh 25/07/2011 1 1 1 2 4 & fc43_traceVMA.sh 25/07/2011 1 1 1 3 4 & fc43_traceVMA.sh 25/07/2011 1 1 1 4 4 &
if (traceResults.m_ContactObjects_Aligned16[i] != null) // if something was hit
{
if (g_ModuleConfigDebugHUD->ShowTracedDepth())
{
float depth = HHClamp(255.0f - 255.0f / (1.0f + traceResults.m_HitTimes_Aligned16[i] / 20.0f), 0.0f, 255.0f);
color = CFloat3(depth);
}
else
{
// cache GetDynamicState() it across pixels, we're likely to hit the same object multiple times
if (traceResults.m_ContactObjects_Aligned16[i] != tObj)
{
tObj = traceResults.m_ContactObjects_Aligned16[i];
tObj->GetDynamicState(dState);
}
CFloat3 contactNormal = dState.m_GlobalTransforms.RotateVector(traceResults.m_ContactNormals_Aligned16[i].xyz());
color = contactNormal * 120.0f + 127.5f;
}
}

HURRRR !
vince Le 08/08/2011 à 10:30 fc43_traceVMA.sh 25/07/2011 1 1 1 0 4 & fc43_traceVMA.sh 25/07/2011 1 1 1 1 4 & fc43_traceVMA.sh 25/07/2011 1 1 1 2 4 & fc43_traceVMA.sh 25/07/2011 1 1 1 3 4 & fc43_traceVMA.sh 25/07/2011 1 1 1 4 4 &
[ ]- profiler right margin

HURRRR !
m_RayPacket.m_RayDirectionsAndLengths_Aligned16

HURRRR !
if (!n->IsLeaf()) // it's-a meeee! a noooode!

HURRRR !
fListenSock.close();
fTargetSock.close();
/*
hh_u32 left = m_RayPacket.m_RayOrigins_Aligned16.Count() & 3;
for (hh_u32 i = 0; i < left; i++)
{
if (m_RayPacket.m_RayDirectionsAndLengths_Aligned16[i].w() != 0.0f)
{
CRay ray(m_RayPacket.m_RayOrigins_Aligned16[i].xyz(), m_RayPacket.m_RayDirectionsAndLengths_Aligned16[i].xyz(), m_RayPacket.m_RayDirectionsAndLengths_Aligned16[i].w());
HH_ASSERT(ray.Length() > 0.0f && ray.Direction() != CFloat3::Zero);
float t0, t1;
if (Colliders::ClipRayToBox(ray, nodeBox, t0, t1))
return false; // if at least one ray overlaps the box, consider this as a positive
}
}*/

HURRRR !
plugins-commons-virtual upgraded to support standbyLoad().

Je ne suis pas développeur Java : je suis artiste Java.
Ce que l’on conçoit bien s’énonce clairement, / Et le code pour l’écrire arrive aisément.
Hâtez-vous lentement ; toujours, avec méthode, / Vingt fois dans l’IDE travaillez votre code.
La perfection est atteinte, non pas lorsqu’il n’y a plus rien à ajouter, mais lorsqu’il n’y a plus rien à retirer.
You don't use science to show that you're right, you use science to become right.
SIMD::Float4 rayStartXXXX = SIMD::Float4::LoadAligned16(origins, 0x00);
SIMD::Float4 rayStartYYYY = SIMD::Float4::LoadAligned16(origins, 0x10);
SIMD::Float4 rayStartZZZZ = SIMD::Float4::LoadAligned16(origins, 0x20);
SIMD::Float4 invRayDirXXXX = SIMD::Float4::LoadAligned16(invDirs, 0x00);
SIMD::Float4 invRayDirYYYY = SIMD::Float4::LoadAligned16(invDirs, 0x10);
SIMD::Float4 invRayDirZZZZ = SIMD::Float4::LoadAligned16(invDirs, 0x20);
SIMD::Float4 l1XXXX = (bboxMinXXXX - rayStartXXXX) * invRayDirXXXX;
SIMD::Float4 l1YYYY = (bboxMinYYYY - rayStartYYYY) * invRayDirYYYY;
SIMD::Float4 l1ZZZZ = (bboxMinZZZZ - rayStartZZZZ) * invRayDirZZZZ;
SIMD::Float4 l2XXXX = (bboxMaxXXXX - rayStartXXXX) * invRayDirXXXX;
SIMD::Float4 l2YYYY = (bboxMaxYYYY - rayStartYYYY) * invRayDirYYYY;
SIMD::Float4 l2ZZZZ = (bboxMaxZZZZ - rayStartZZZZ) * invRayDirZZZZ;
SIMD::Float4 lMinXXXX = SIMD::Min(l1XXXX, l2XXXX);
SIMD::Float4 lMinYYYY = SIMD::Min(l1YYYY, l2YYYY);
SIMD::Float4 lMinZZZZ = SIMD::Min(l1ZZZZ, l2ZZZZ);
SIMD::Float4 lMaxXXXX = SIMD::Max(l1XXXX, l2XXXX);
SIMD::Float4 lMaxYYYY = SIMD::Max(l1YYYY, l2YYYY);
SIMD::Float4 lMaxZZZZ = SIMD::Max(l1ZZZZ, l2ZZZZ);
// compute the min and max component-wise:
SIMD::Float4 t0 = SIMD::Max(lMinXXXX, lMinYYYY);
SIMD::Float4 t1 = SIMD::Min(lMaxXXXX, lMaxYYYY);
t0 = SIMD::Max(lMinZZZZ, t0);
t1 = SIMD::Min(lMaxZZZZ, t1);
// return (lMax >= lMin) && (lMax >= 0);
#if (HH_SIMD == HH_SIMD_SSE)
SIMD::Float4 m0 = t1.MaskGreaterEqual(t0);
SIMD::Float4 m1 = t1.MaskGreaterEqual(SIMD::Float4::Zero());
hh_u32 mask = _mm_movemask_ps(_mm_and_ps(m0._xmm(), m1._xmm()));
if (mask != 0)
return false;
#else
if ((t1 >= t0) & (t1 >= SIMD::Float4::Zero()))
return false;
#endif
origins += 12;
invDirs += 12;

HURRRR !
vince Le 08/08/2011 à 15:10 DELETE FROM FCCO3_CONTVARI_L WHERE FCCO3_TYPSITUAT = 'A'
a hospital in China is selling dead babies
fin Le 08/08/2011 à 15:55 Kingu va voir ce topic si ça se trouve, telchar.