=20110421|107=RHODIA|78=1|79=000035

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.
//HH_ASSERT(InsertedInSpatialDatabase());

HURRRR !
CFloat3 extentDelta = m_CachedBounds.Extent() / m_ExactBounds.Extent(); // this will produce infinities in case RealBBox has a zero component. but we don't care (although it should not happen)
HH_ASSERT(g_ModuleConfigParticles->MaxDegenerationBeforeCachedBoundsResync() >= 1.0f);
float boundsDegenerationFactor = HHMax(fabsf(extentDelta.x()), fabsf(extentDelta.y()), fabsf(extentDelta.z()));
needsCachedBoundsRefresh |= (boundsDegenerationFactor > g_ModuleConfigParticles->MaxDegenerationBeforeCachedBoundsResync());
if (needsCachedBoundsRefresh)
{
m_CachedBounds = m_ExactBounds;
m_UpdateTimer.Clear();

HURRRR !
class HH_PARTICLES_EXPORT CSmartCachedBounds
{
private:
CAABB m_ExactBounds;
CAABB m_CachedBounds;
CTimer m_UpdateTimer;
float m_LastTime;
public:
CSmartCachedBounds();
~CSmartCachedBounds();
void SetExactBounds(const CAABB &box);
void AddToExactBounds(const CAABB &merge);
const CAABB &ExactBounds() const { return m_ExactBounds; }
const CAABB &CachedBounds() const { return m_CachedBounds; }
void Update();
};

HURRRR !
Noting auth required for realm

<<< Kernel Extremis©®™ >>> et Inventeur de la différence administratif/judiciaire ! (©Yoshi Noir)
<Vertyos> un poil plus mais elle suce bien quand même la mienne ^^
<Sabrina`> tinkiete flan c juste qu'ils sont jaloux que je te trouve aussi appétissant
vince Le 26/04/2011 à 11:52 ;Début modif VMA 26/04/2011
"un système de recherche et de récupération qui permet aux enregistrements d'expirer et de ne pas être intégrés dans les résultats d'une recherche"

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.