1 %extend SbBox2d { __eq__(const SbBox2d & u)2 int __eq__(const SbBox2d & u) { return *self == u; } __ne__(const SbBox2d & u)3 int __ne__(const SbBox2d & u) { return *self != u; } setValue(const SbBox2d & u)4 SbBox2d & setValue(const SbBox2d & u) { 5 self->setBounds(u.getMin(), u.getMax()); 6 return *self; 7 } 8 } 9