mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-07 00:34:50 -04:00
--Code changes
-Better use of const functions. -Ember.pro should not define BUILDING_EMBERCL, instead define BUILDING_EMBER.
This commit is contained in:
@ -820,7 +820,7 @@ public:
|
||||
const vector<T>& XaosVec() const { return m_Xaos; }
|
||||
Ember<T>* ParentEmber() const { return m_ParentEmber; }
|
||||
void ParentEmber(Ember<T>* ember) { m_ParentEmber = ember; }
|
||||
intmax_t IndexInParentEmber() { return m_ParentEmber ? m_ParentEmber->GetTotalXformIndex(this) : -1; }
|
||||
intmax_t IndexInParentEmber() const { return m_ParentEmber ? m_ParentEmber->GetTotalXformIndex(const_cast<Xform<T>*>(this)) : -1; }
|
||||
|
||||
/// <summary>
|
||||
/// Set the precalc flags based on whether any variation in the vector needs them.
|
||||
|
Reference in New Issue
Block a user