We have released a new version, 406b, of "Jun for Java".
The major changes since the version 406 includes:
* Updated to the new major release of StPL, version 6.0.
* The package 'sra.jun.goodies.calendar.*' contains several
classes which allow you to select date and/or time
interactively.
http://www.sra.co.jp/people/nisinaka/Jun4Java/News/406b/Calendar.png
* According to the modification of StPL(6.0), the subclasses
of StApplicationModel are needed to be modified. When
closing a window related to an StApplicationModel, its
noticeOfWindowClose() method will be called just before
the window is really disposed.
* Fixed a bug of JunOpenGLRenderingContext. The status of
the lights were not correctly cleared.
* The VRML97 parser is enhanced to handle PointSet node.
You can download "Jun for Java" from the following URL.
ftp://ftp.sra.co.jp/pub/lang/java/jun4java/
Jun is a framework for developing 3D graphic multimedia
applications provided as an Open Source Software at NO COST.
Please refer to the following URL for more information about
"Jun for Java".
http://www.sra.co.jp/people/nisinaka/Jun4Java/index-e.html
Best regards,
Yosh Nishinaka (nisinaka@sra.co.jp)
> We have released a new version, 406b, of "Jun for Java".
Good news ! Thanks a lot.
Hey, JunQTJava still doesn't support int ARGB pixels reading and the
standard QT compression dialog. Do you think you'll implement that ?
In JunQTInterface.c you write:
/* alpha channel doesn't work on Windows... */
#define RGB_PIXEL(red, green, blue) \
(0xff000000 | ((red) << 16) | ((green) << 8) | (blue))
This is not completely true.
You should implement get_pixels() so that it can return an alpha-channel
pixmap.
Cheers,
Mik.
--
Hoshi Takanori - 31 Oct 2003 10:50 GMT
Hello,
Thank you very much for your message.
> Hey, JunQTJava still doesn't support int ARGB pixels reading and the
> standard QT compression dialog. Do you think you'll implement that ?
About ARGB pixels, JunQTInterface uses GetMoviePict(),
which doesn't seems to support alpha channel on Windows.
(I don't know where to put "useMovieAlpha" parameter in
that case...)
About the standard QT compression dialog, currently,
we have no plan on it.
hoshi