Tamito Kajiyama
30d3a57eb7
Fix for Freestyle built-in style module sketchy_multiple_parameterization.py not working correctly.
...
Suitable for inclusion in 2.67a.
Logical AND, OR and XOR operations on freestyle.Nature instances gave an error in some cases.
The updated C implementation of these bitwise operations is intended to reproduce the following Python implementation:
class Nature(int):
def __and__(self, other):
return Nature(int(self) & int(other))
def __or__(self, other):
return Nature(int(self) | int(other))
def __xor__(self, other):
return Nature(int(self) ^ int(other))
The problem report was by plasmasolutions on IRC, thanks a lot!
2013-05-16 23:49:05 +00:00
..
2013-03-31 01:11:07 +00:00
2013-03-31 01:11:07 +00:00
2013-03-31 01:11:07 +00:00
2013-03-31 01:11:07 +00:00
2013-03-31 01:11:07 +00:00
2013-03-31 01:11:07 +00:00
2013-03-31 01:11:07 +00:00
2013-03-31 01:11:07 +00:00
2013-03-31 01:11:07 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-05-14 22:16:18 +00:00
2013-04-09 00:46:49 +00:00
2013-04-07 11:22:54 +00:00
2013-03-31 01:11:07 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-05-16 23:49:05 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-05-14 22:51:11 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00
2013-03-31 01:11:07 +00:00
2013-04-09 00:46:49 +00:00