-
Notifications
You must be signed in to change notification settings - Fork 620
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Found a bug while trying to build PyImbase with a non system python version and boost python library. #8
Closed
barnabyrobson
wants to merge
802
commits into
AcademySoftwareFoundation:master
from
barnabyrobson:master
Closed
Found a bug while trying to build PyImbase with a non system python version and boost python library. #8
barnabyrobson
wants to merge
802
commits into
AcademySoftwareFoundation:master
from
barnabyrobson:master
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exrdisplay and playexr displays OpenEXR images correctly.
Adding new playexr program.
… and OpenEXR_Viewers
… and OpenEXR_Viewers
… and OpenEXR_Viewers
… and OpenEXR_Viewers
+ near() and far() in ImathFrustum are now updated to be nearPlane() and farPlane() to prevent conflicts with #defines on windows. The hither() and yon() functions remain but can be considered deprecated. + ImathBox now supports infinite functions analogous to the empty functions (isInfinite(), makeInfinite()), and the ImathBoxAlgo transform code has been updated accordingly. + ImathBoxAlgo has an additional transform() overload that takes the result as the last argument. + ImathMatrix now has matrix minor and detriminant functions. + ImathMatrixAlgo now has outerProduct(), addOffset() and computeLocalFrame() functions.
'near' and 'far' have been renamed to 'nearPlane' and 'farPlane' due to conflicts with certain windows headers. The former alternate accessor names for these values on windows ('hither' and 'yon') remain, though should be considered deprecated. (David Lenihan) * Added SVD, eigenvalue solver, and procrustes fit calculations to ImathMatrixAlgo. (Chris Twigg, Ji Hun Yu) * Added Imath::FrustumTest for frustum visibility testing. (Eric Johnston) * Fixed a stack corruption in the matrix minorOf functions. (Nick Rasmussen) * Visual studio 2008 project files have been added to the vc/vc9 directory, and several minor visual studio compile fixes have been applied. (Nick Rasmussen)
Initial checkin of the PyIlmBase code
…need the custom boost python directories ahead of the python directories because the python directories might just be the system directories which might contain a different boost python library.
Thanks for this. I don't suppose we have any tests for this one ... :) |
Fixed with checkin ; e7bfc7d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
...d the custom boost python directories ahead of the python directories because the python directories might just be the system directories which might contain a different boost python library.