Dear Smalltalkers, could you give me some ideas about 3D imaging and simulation in Smalltalk, e. g. for technical or medical solutions. Think scanning data from different devices need to be synced, processed and displayed with the ability to rotate, slice etc. in arbitrary ways interactively. Are there any solutions in Smalltalk that one could use as a starter?
Any pointers welcome! TIA
**************************************************************
Alles über Cincom Smalltalk:
Ein Standpunkt ist ein geistiger Horizont vom Radius Null.
Geschäftsführer/Managing Directors: Thomas M. Nies, Gerald L. Shawhan
_______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc ole0.bmp (247K) Download Attachment |
Nowak, Helge wrote:
> Dear Smalltalkers, > > could you give me some ideas about 3D imaging and simulation in > Smalltalk, e. g. for technical or medical solutions. Think scanning data > from different devices need to be synced, processed and displayed with > the ability to rotate, slice etc. in arbitrary ways interactively. > > Are there any solutions in Smalltalk that one could use as a starter? > Or: are there any at all? > Which (external) libraries would you suggest? > Which kind of database would you suggest: OO or RDBMS? > > Any pointers welcome! An interesting problem area. I'd think Smalltalk would be ideal for it, though I'll admit some bias in that area. :-) I haven't used it, but there is Jun. I suspect that it's more on the displaying 3D side than the manipulating 3D data side, but could still be useful. This sounds like an area where you might want deep hierarchies of data, or other structures that don't fit easily into a table structure, so I'd go with an OODB. GemStone would be ideal. I'll admit some bias in that area as well. :-D Regards, -Martin _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
At Smalltalk Solutions 2007, there was a presentation on a 3D body
motion simulation package written in VisualWorks. I attended the presentation and I remember it seemed very good. See here: http://askoh.com/. -----Original Message----- From: [hidden email] [mailto:[hidden email]] On Behalf Of Martin McClure Sent: Wednesday, September 30, 2009 4:02 PM To: Nowak, Helge Cc: VWNC Subject: Re: [vwnc] 3D simulation Nowak, Helge wrote: > Dear Smalltalkers, > > could you give me some ideas about 3D imaging and simulation in > Smalltalk, e. g. for technical or medical solutions. Think scanning > data from different devices need to be synced, processed and displayed > with the ability to rotate, slice etc. in arbitrary ways interactively. > > Are there any solutions in Smalltalk that one could use as a starter? > Or: are there any at all? > Which (external) libraries would you suggest? > Which kind of database would you suggest: OO or RDBMS? > > Any pointers welcome! An interesting problem area. I'd think Smalltalk would be ideal for it, though I'll admit some bias in that area. :-) I haven't used it, but there is Jun. I suspect that it's more on the displaying 3D side than the manipulating 3D data side, but could still be useful. This sounds like an area where you might want deep hierarchies of data, or other structures that don't fit easily into a table structure, so I'd go with an OODB. GemStone would be ideal. I'll admit some bias in that area as well. :-D Regards, -Martin _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
In reply to this post by Martin McClure
(for the sake of ease, there are some FreeCAD screenshots here:
http://askoh.com/freecad/what_is_freecad/index.html). -----Original Message----- From: [hidden email] [mailto:[hidden email]] On Behalf Of Martin McClure Sent: Wednesday, September 30, 2009 4:02 PM To: Nowak, Helge Cc: VWNC Subject: Re: [vwnc] 3D simulation Nowak, Helge wrote: > Dear Smalltalkers, > > could you give me some ideas about 3D imaging and simulation in > Smalltalk, e. g. for technical or medical solutions. Think scanning > data from different devices need to be synced, processed and displayed > with the ability to rotate, slice etc. in arbitrary ways interactively. > > Are there any solutions in Smalltalk that one could use as a starter? > Or: are there any at all? > Which (external) libraries would you suggest? > Which kind of database would you suggest: OO or RDBMS? > > Any pointers welcome! An interesting problem area. I'd think Smalltalk would be ideal for it, though I'll admit some bias in that area. :-) I haven't used it, but there is Jun. I suspect that it's more on the displaying 3D side than the manipulating 3D data side, but could still be useful. This sounds like an area where you might want deep hierarchies of data, or other structures that don't fit easily into a table structure, so I'd go with an OODB. GemStone would be ideal. I'll admit some bias in that area as well. :-D Regards, -Martin _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
In reply to this post by Andres Valloud-6
Valloud, Andres wrote:
> At Smalltalk Solutions 2007, there was a presentation on a 3D body > motion simulation package written in VisualWorks. I attended the > presentation and I remember it seemed very good. See here: > http://askoh.com/. Oh, yes, this looked good. The new website seems to be: http://www.ar-cad.com/ Regards, -Martin > > -----Original Message----- > From: [hidden email] [mailto:[hidden email]] On > Behalf Of Martin McClure > Sent: Wednesday, September 30, 2009 4:02 PM > To: Nowak, Helge > Cc: VWNC > Subject: Re: [vwnc] 3D simulation > > Nowak, Helge wrote: >> Dear Smalltalkers, >> >> could you give me some ideas about 3D imaging and simulation in >> Smalltalk, e. g. for technical or medical solutions. Think scanning >> data from different devices need to be synced, processed and displayed > >> with the ability to rotate, slice etc. in arbitrary ways > interactively. >> Are there any solutions in Smalltalk that one could use as a starter? >> Or: are there any at all? >> Which (external) libraries would you suggest? >> Which kind of database would you suggest: OO or RDBMS? >> >> Any pointers welcome! > vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
We just do 2D , but we use :
- SIXX for object network storage (sorry for Gemstone) : the great thing is our data model evolved a lot and SIXX just ignores missing or added instance variables, and ignores hierarchy modification as well - home made DXF reading and writing, but Jun has some stuff for that. DXF is widely used in CAD, and allows to import complex designed forms We looked at OpenGL but discussing with Michael Lucas-Smith, it strongly depends on your video card, which makes it uneasy to distribute. Is there any general framework for simulation ? Annick Fron Le 1 oct. 09 à 03:54, Martin McClure a écrit : > Valloud, Andres wrote: >> At Smalltalk Solutions 2007, there was a presentation on a 3D body >> motion simulation package written in VisualWorks. I attended the >> presentation and I remember it seemed very good. See here: >> http://askoh.com/. > > Oh, yes, this looked good. > > The new website seems to be: > > http://www.ar-cad.com/ > > Regards, > > -Martin > >> >> -----Original Message----- >> From: [hidden email] [mailto:[hidden email]] On >> Behalf Of Martin McClure >> Sent: Wednesday, September 30, 2009 4:02 PM >> To: Nowak, Helge >> Cc: VWNC >> Subject: Re: [vwnc] 3D simulation >> >> Nowak, Helge wrote: >>> Dear Smalltalkers, >>> >>> could you give me some ideas about 3D imaging and simulation in >>> Smalltalk, e. g. for technical or medical solutions. Think scanning >>> data from different devices need to be synced, processed and >>> displayed >> >>> with the ability to rotate, slice etc. in arbitrary ways >> interactively. >>> Are there any solutions in Smalltalk that one could use as a >>> starter? >>> Or: are there any at all? >>> Which (external) libraries would you suggest? >>> Which kind of database would you suggest: OO or RDBMS? >>> >>> Any pointers welcome! >> > _______________________________________________ > vwnc mailing list > [hidden email] > http://lists.cs.uiuc.edu/mailman/listinfo/vwnc > _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
In reply to this post by Nowak, Helge
If someone takes the trouble of interfacing Smalltalk to OpenCascade it would be most appropriate for more intense CAD kind of imaging and simulations. Jun is OpenGL but from my experience of CAD not adequate enough for intensive rendering operations more in terms of performance and quality of rendering with anti-aliasing to the extent open-cascade engine can do.
Would be interesting stuff to extend OpenCascade to Smalltalk VW.. or generic Smalltalk if possible to keep the code portable and usable through all dialects. -Skrish On Tue, Sep 29, 2009 at 9:15 PM, Nowak, Helge <[hidden email]> wrote:
_______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc ole0.bmp (247K) Download Attachment |
On Thu, Oct 1, 2009 at 2:26 PM, Sudhakar Krishnamachari <[hidden email]> wrote:
_______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Thank you all for the interesting answers! Now we have
something to start from.
Have a nice weekend all!
Helge Von: Sudhakar Krishnamachari [mailto:[hidden email]] Gesendet: Donnerstag, 1. Oktober 2009 11:01 An: Nowak, Helge Cc: VWNC Betreff: Re: [vwnc] 3D simulation On Thu, Oct 1, 2009 at 2:26 PM, Sudhakar Krishnamachari
<[hidden email]>
wrote:
_______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
There is a far more up to date OpenGL interface in the public store - you can visit Michael's blog for details on it:
It also doesn't suffer from being GPL... James Robertson Cincom Smalltalk Product Evangelist Talk Small and Carry a Big Class Library On Oct 2, 2009, at 12:25 PM, Nowak, Helge wrote:
_______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Free forum by Nabble | Edit this page |