Added not equal operator to BlobBezier::Radiuses.
This commit is contained in:
parent
577e8f94ab
commit
fe6daf12b8
1 changed files with 3 additions and 0 deletions
|
|
@ -19,6 +19,9 @@ public:
|
||||||
inline bool operator==(const Radiuses &other) const {
|
inline bool operator==(const Radiuses &other) const {
|
||||||
return (min == other.min) && (max == other.max);
|
return (min == other.min) && (max == other.max);
|
||||||
}
|
}
|
||||||
|
inline bool operator!=(const Radiuses &other) const {
|
||||||
|
return !(min == other.min) && (max == other.max);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
BlobBezier(int n, float minScale, float minSpeed = 0, float maxSpeed = 0);
|
BlobBezier(int n, float minScale, float minSpeed = 0, float maxSpeed = 0);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue