Added != method to Vec2,Vec3,Vec4 and did further work on the

AttributeUpdateFunctors.
This commit is contained in:
Robert Osfield
2001-10-12 20:05:55 +00:00
parent cb17e99420
commit 9db63dfd5d
5 changed files with 34 additions and 9 deletions

View File

@@ -288,6 +288,14 @@ class SG_EXPORT GeoSet : public Drawable
const bool check() const;
/** return the attributes supported by applyAttrbuteUpdate() as an AttributeBitMask.*/
virtual AttributeBitMask suppportsAttributeUpdate() const;
/** return the attributes successully applied in applyAttributeUpdate.*/
virtual AttributeBitMask applyAttributeUpdate(AttributeBitMask abm,AttributeUpdateFunctor& auf);
protected:
GeoSet(const GeoSet&):Drawable() {}