diff options
author | adam <adam> | 2010-12-14 09:52:51 +0000 |
---|---|---|
committer | adam <adam> | 2010-12-14 09:52:51 +0000 |
commit | d9d663ef22c2bb6616ddbefea6fd43f69188dd6e (patch) | |
tree | f9e51283ace5908a807d1ea60adf0796d15f4fd9 /graphics/ilmbase/Makefile | |
parent | 64c86064af9d374fd6d7a5c85243065eeadf158d (diff) | |
download | pkgsrc-d9d663ef22c2bb6616ddbefea6fd43f69188dd6e.tar.gz |
Changes 1.0.2:
* Added explicit copy constructors to Imath::Matrix33<T> and
ImathMatrix44<T> to make conversions between float and double
matrices more convenient.
* Added slerpShortestArc() and euclideanInnerProduct() functions
to Imath::Quat<T>.
* Added 4D vector class template Imath::Vec4<T>.
* Copy constructors and assignment operators for Matrix33<T>
and Matrix44<T> are up to 25% faster. Added matrix constructors
that do not initialize the matrix (this is faster in cases where
the initial value of the matrix is immediately overwritten anyway).
* Rewrote function closestPointOnBox(point,box). Shortened
the code, improved numerical accuracy, fixed a bug where
closestPointOnBox(box.center(),box) would return the center
of the +Z side of the box, even if the +/-X or +/-Y sides
were closer.
* Rewrote function findEntryAndExitPoints() in ImathBoxAlgo.h.
Results are now consistent with those from intersect(), also
in ImathBoxAlgo.h.
* Made Vec2<T>::length() and Vec3<T>::length() more accurate for
vectors whose length is less than sqrt(limits<T>::smallest());
* Made Quat<T>::angle() more accurate for small angles.
Diffstat (limited to 'graphics/ilmbase/Makefile')
-rw-r--r-- | graphics/ilmbase/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/graphics/ilmbase/Makefile b/graphics/ilmbase/Makefile index 56bca3a08dd..2290968c775 100644 --- a/graphics/ilmbase/Makefile +++ b/graphics/ilmbase/Makefile @@ -1,12 +1,13 @@ -# $NetBSD: Makefile,v 1.4 2009/01/28 13:14:54 tron Exp $ +# $NetBSD: Makefile,v 1.5 2010/12/14 09:52:51 adam Exp $ -DISTNAME= ilmbase-1.0.1 +DISTNAME= ilmbase-1.0.2 CATEGORIES= graphics MASTER_SITES= http://savannah.nongnu.org/download/openexr/ MAINTAINER= adam@NetBSD.org HOMEPAGE= http://www.openexr.com/ COMMENT= High dynamic-range (HDR) image file format library and tools +LICENSE= modified-bsd PKG_DESTDIR_SUPPORT= user-destdir |