The probem with 10.1 is very likely that you need to the latest version of cal3d (0.10).
On Sunday 16 October 2005 07.53, Mark Ivey wrote: > The proportion argument to advance_time() goes down within a round > sometimes. Is that a bug or am I doing something wrong? (This is with > 9.1 so maybe this is fixed in newer versions. I can't get 10.1 to run, > it segfaults) > > Test program: > #!/usr/bin/env python > > import sys, os, os.path, soya > > soya.init() > scene = soya.World() > > class actor( soya.Volume ): > def begin_round(self): > super(actor, self).begin_round() > print "begin round" > > def advance_time(self, proportion): > super(actor, self).advance_time(proportion) > print proportion > > def end_round(self): > super(actor, self).end_round() > print "end round" > > test = actor(scene, soya.Shape()) > soya.Idler(scene).idle() > > > > > Output: > <snip...> > begin round > 0.671195983887 > 0.328804016113 > end round > begin round > 0.338235527277 > 0.661764442921 > end round > begin round > 0.0112355547026 > 0.691962242126 > 0.296802192926 > end round > <snip...> > > > -Mark Ivey- > > > _______________________________________________ > Soya-user mailing list > [email protected] > https://mail.gna.org/listinfo/soya-user -- Reto Spoerri IT Administrator The Genetics Company, Inc. Wagistr. 27 8952 Schlieren Schweiz phone +41-44-200-2210 fax +41-44-200-2211 [EMAIL PROTECTED] www.the-genetics.com This message is for the named person's use only. It may contain confidential, proprietary or legally privileged information. No confidentiality or privilege is waived or lost by any mistransmission. If you receive this message in error, please immediately delete it and all copies of it from your system, destroy any hard copies of it and notify the sender. You must not, directly or indirectly, use, disclose, distribute, print, or copy any part of this message if you are not the intended recipient.
