I was wondering if anyone had any quadtree code they wouldn't mind sharing? I couldn't find any on squeaksource.
Meanwhile, I'll get started :) Thanks, RS
_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Hi Robert,
I have an implementation of dynamic axis-aligned bounding-box trees in VisualWorks. They are basically octrees which may behave as quadtrees (two planes used to cut the space) or BSP-like trees (only one plane) depending on the number of objects that are cut by the splitting planes (maybe if you just need a qudtree it may be an overkill). Let me know if it may help you. Cheers, Andrés Robert Sirois escribió: > I was wondering if anyone had any quadtree code they wouldn't mind sharing? I couldn't find any on squeaksource. > Meanwhile, I'll get started :) > Thanks,RS > > > ------------------------------------------------------------------------ > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Id love to see them, thanks. I'm just getting into it, so seeing even related code will be nice :)
I've been following some different examples online and piecing together one, so ill probably finish it just for the learning experience regardless. RS > Date: Tue, 23 Nov 2010 18:52:25 -0300 > From: andres@lifia.info.unlp.edu.ar > To: seaside@lists.squeakfoundation.org > Subject: Re: [Seaside] Quadtree > > Hi Robert, > I have an implementation of dynamic axis-aligned > bounding-box trees in VisualWorks. They are basically octrees which may > behave as quadtrees (two planes used to cut the space) or BSP-like trees > (only one plane) depending on the number of objects that are cut by the > splitting planes (maybe if you just need a qudtree it may be an overkill). > Let me know if it may help you. > > Cheers, > Andrés > > > Robert Sirois escribió: > > I was wondering if anyone had any quadtree code they wouldn't mind sharing? I couldn't find any on squeaksource. > > Meanwhile, I'll get started :) > > Thanks,RS > > > > > > ------------------------------------------------------------------------ > > > > _______________________________________________ > > seaside mailing list > > seaside@lists.squeakfoundation.org > > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > _______________________________________________ > seaside mailing list > seaside@lists.squeakfoundation.org > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Ok, now we only have to agree on how to transfer from VW to Squeak :).
Maybe this is a bit OT for the seaside list, I'll write you a private mail. Cheers, Andrés Robert Sirois escribió: > Id love to see them, thanks. I'm just getting into it, so seeing even related code will be nice :) > > I've been following some different examples online and piecing together one, so ill probably finish it just for the learning experience regardless. > > RS > >> Date: Tue, 23 Nov 2010 18:52:25 -0300 >> From: [hidden email] >> To: [hidden email] >> Subject: Re: [Seaside] Quadtree >> >> Hi Robert, >> I have an implementation of dynamic axis-aligned >> bounding-box trees in VisualWorks. They are basically octrees which may >> behave as quadtrees (two planes used to cut the space) or BSP-like trees >> (only one plane) depending on the number of objects that are cut by the >> splitting planes (maybe if you just need a qudtree it may be an overkill). >> Let me know if it may help you. >> >> Cheers, >> Andrés >> >> >> Robert Sirois escribió: >>> I was wondering if anyone had any quadtree code they wouldn't mind sharing? I couldn't find any on squeaksource. >>> Meanwhile, I'll get started :) >>> Thanks,RS >>> >>> >>> ------------------------------------------------------------------------ >>> >>> _______________________________________________ >>> seaside mailing list >>> [hidden email] >>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > > > ------------------------------------------------------------------------ > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
You may check it out:
http://scg.unibe.ch/wiki/howtos/portingfromvisualworkstosqueak Cheers, 2010/11/23 andres <[hidden email]>: > Ok, now we only have to agree on how to transfer from VW to Squeak :). Maybe > this is a bit OT for the seaside list, I'll write you a private mail. > > Cheers, > Andrés > > > Robert Sirois escribió: >> >> Id love to see them, thanks. I'm just getting into it, so seeing even >> related code will be nice :) >> >> I've been following some different examples online and piecing together >> one, so ill probably finish it just for the learning experience regardless. >> >> RS >> >>> Date: Tue, 23 Nov 2010 18:52:25 -0300 >>> From: [hidden email] >>> To: [hidden email] >>> Subject: Re: [Seaside] Quadtree >>> >>> Hi Robert, >>> I have an implementation of dynamic axis-aligned >>> bounding-box trees in VisualWorks. They are basically octrees which may >>> behave as quadtrees (two planes used to cut the space) or BSP-like trees >>> (only one plane) depending on the number of objects that are cut by the >>> splitting planes (maybe if you just need a qudtree it may be an overkill). >>> Let me know if it may help you. >>> >>> Cheers, >>> Andrés >>> >>> >>> Robert Sirois escribió: >>>> >>>> I was wondering if anyone had any quadtree code they wouldn't mind >>>> sharing? I couldn't find any on squeaksource. >>>> Meanwhile, I'll get started :) >>>> Thanks,RS >>>> >>>> ------------------------------------------------------------------------ >>>> >>>> _______________________________________________ >>>> seaside mailing list >>>> [hidden email] >>>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >>> >>> _______________________________________________ >>> seaside mailing list >>> [hidden email] >>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside >> >> >> >> ------------------------------------------------------------------------ >> >> _______________________________________________ >> seaside mailing list >> [hidden email] >> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > > _______________________________________________ > seaside mailing list > [hidden email] > http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside > -- Hernán Morales Information Technology Manager, Institute of Veterinary Genetics. National Scientific and Technical Research Council (CONICET). La Plata (1900), Buenos Aires, Argentina. Telephone: +54 (0221) 421-1799. Internal: 422 Fax: 425-7980 or 421-1799. _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
In reply to this post by Andres Fortier-2
2010/11/23 andres <[hidden email]>:
> Ok, now we only have to agree on how to transfer from VW to Squeak :). Maybe > this is a bit OT for the seaside list, ... Nope, not at all. AFAIK MLS has some Monticello tools that allow him to publish from VW to a Monticello repository. Cheers Philippe _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
hello can somemone explaine how to set manually the a DateAndTime. a := DateAndTime new. "a method like that" a set: 10-11-2010-16h12 thanks
_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
a := DateAndTime year: 2010 month: 11 day: 25 hour: 10 minute: 45 second: 38 -Boris -- DeepCove Labs Ltd. +1 (604) 689-0322 4th floor, 595 Howe Street Vancouver, British Columbia Canada V6C 2T5 http://tinyurl.com/r7uw4 PacNet Services (Europe) Ltd. +353 (0)61 714-360 Shannon Airport House, SFZ County Clare, Ireland http://tinyurl.com/y952amr CONFIDENTIALITY NOTICE This email is intended only for the persons named in the message header. Unless otherwise indicated, it contains information that is private and confidential. If you have received it in error, please notify the sender and delete the entire message including any attachments. Thank you. From: [hidden email] [mailto:[hidden email]] On Behalf Of Nicolas Vanni hello can somemone explaine how to set manually the a DateAndTime. a := DateAndTime new. "a method like that" a set: 10-11-2010-16h12 thanks _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Thank you De : "Boris Popov, DeepCove Labs" <[hidden email]> À : Seaside - general discussion <[hidden email]> Envoyé le : Jeu 25 novembre 2010, 11h 46min 16s Objet : RE: [Seaside] DateAndTime a := DateAndTime year: 2010 month: 11 day: 25 hour: 10 minute: 45 second: 38
-Boris
-- DeepCove Labs Ltd. +1 (604) 689-0322 4th floor, 595 Howe Street Vancouver, British Columbia Canada V6C 2T5
PacNet Services (Europe) Ltd. +353 (0)61 714-360 Shannon Airport House, SFZ County Clare, Ireland
CONFIDENTIALITY NOTICE
This email is intended only for the persons named in the message header. Unless otherwise indicated, it contains information that is private and confidential. If you have received it in error, please notify the sender and delete the entire message including any attachments.
Thank you.
From: [hidden email] [mailto:[hidden email]] On Behalf Of Nicolas Vanni
hello
can somemone explaine how to set manually the a DateAndTime.
a := DateAndTime new.
"a method like that" a set: 10-11-2010-16h12
thanks
_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Browse the class side of DateAndTime and look through the methods. There's lots of convenience methods like #tomorrow, #yesterday, etc. and you can also add Duration (I think) objects to instances of DateAndTime with # , etc.
RS Date: Thu, 25 Nov 2010 10:51:12 +0000 From: [hidden email] Subject: Re : [Seaside] DateAndTime To: [hidden email] Thank you De : "Boris Popov, DeepCove Labs" <[hidden email]> À : Seaside - general discussion <[hidden email]> Envoyé le : Jeu 25 novembre 2010, 11h 46min 16s Objet : RE: [Seaside] DateAndTime a := DateAndTime year: 2010 month: 11 day: 25 hour: 10 minute: 45 second: 38
-Boris
-- DeepCove Labs Ltd. +1 (604) 689-0322 4th floor, 595 Howe Street Vancouver, British Columbia Canada V6C 2T5
PacNet Services (Europe) Ltd. +353 (0)61 714-360 Shannon Airport House, SFZ County Clare, Ireland
CONFIDENTIALITY NOTICE
This email is intended only for the persons named in the message header. Unless otherwise indicated, it contains information that is private and confidential. If you have received it in error, please notify the sender and delete the entire message including any attachments.
Thank you.
From: [hidden email] [mailto:[hidden email]] On Behalf Of Nicolas Vanni
hello
can somemone explaine how to set manually the a DateAndTime.
a := DateAndTime new.
"a method like that" a set: 10-11-2010-16h12
thanks
_______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside _______________________________________________ seaside mailing list [hidden email] http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside |
Free forum by Nabble | Edit this page |