mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-06-23 12:35:42 +08:00
Integration of OCCT 6.5.0 from SVN
This commit is contained in:
5
src/IncludeLibrary/IncludeLibrary_inverse.h
Executable file
5
src/IncludeLibrary/IncludeLibrary_inverse.h
Executable file
@@ -0,0 +1,5 @@
|
||||
#define inverse(a)\
|
||||
(0 | (( a & 0x000000ff ) << 24 )\
|
||||
| (( a & 0x0000ff00 ) << 8 )\
|
||||
| (( a & 0x00ff0000 ) >> 8 )\
|
||||
| (( a >> 24 ) & 0x000000ff ) )
|
||||
Reference in New Issue
Block a user