gelato - nvidia and python

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • catalinfest@gmail.com

    gelato - nvidia and python

    Did somebody worked with gelato from nvidia and python?
    I have some C cod from books nvidia .
    This is :
    "
    GelatoAPI *r = GelatoAPI::Crea teRenderer();
    r->Camera ("main");
    .... API calls through r ...
    r->Render ("main");
    delete r; // Finished with this renderer
    "
    the code for python i create is only this :
    "
    python
    Python 2.5.2 (r252:60911, May 28 2008, 08:35:32)
    [GCC 4.2.4 (Debian 4.2.4-1)] on linux2
    Type "help", "copyright" , "credits" or "license" for more information.
    >>import gelato
    >>from gelato import *
    >>r=gelato.Crea teRenderer
    >>print r
    <built-in function CreateRenderer>
    >>dir(r)
    ['__call__', '__class__', '__cmp__', '__delattr__', '__doc__',
    '__getattribute __', '__hash__', '__init__', '__module__', '__name__',
    '__new__', '__reduce__', '__reduce_ex__' , '__repr__', '__self__',
    '__setattr__', '__str__']
    "
    And I blocked here...
    Thank you .
  • name

    #2
    Re: gelato - nvidia and python

    On Jun 29, 5:34 pm, "catalinf...@gm ail.com" <catalinf...@gm ail.com>
    wrote:
    Did somebody worked with gelato from nvidia and python?
    I have some C cod from books nvidia .
    This is :
    "
    GelatoAPI *r = GelatoAPI::Crea teRenderer();
    r->Camera ("main");
    ... API calls through r ...
    r->Render ("main");
    delete r;   // Finished with this renderer
    "
    the code for python i create is only this :
    "
    python
    Python 2.5.2 (r252:60911, May 28 2008, 08:35:32)
    [GCC 4.2.4 (Debian 4.2.4-1)] on linux2
    Type "help", "copyright" , "credits" or "license" for more information.>>> import gelato
    >from gelato import *
    >r=gelato.Creat eRenderer
    >print r
    >
    <built-in function CreateRenderer> >>dir(r)
    >
    ['__call__', '__class__', '__cmp__', '__delattr__', '__doc__',
    '__getattribute __', '__hash__', '__init__', '__module__', '__name__',
    '__new__', '__reduce__', '__reduce_ex__' , '__repr__', '__self__',
    '__setattr__', '__str__']
    "
    And I blocked here...
    Thank you .
    Maybe you should execute the CreateRenderer, like
    r=gelato.Create Renderer()
    dir(r)

    I don't have gelato but it might work..

    Comment

    • Paul Boddie

      #3
      Re: gelato - nvidia and python

      On 29 Jun, 17:34, "catalinf...@gm ail.com" <catalinf...@gm ail.com>
      wrote:
      >
      >dir(r)
      >
      ['__call__', '__class__', '__cmp__', '__delattr__', '__doc__',
      '__getattribute __', '__hash__', '__init__', '__module__', '__name__',
      '__new__', '__reduce__', '__reduce_ex__' , '__repr__', '__self__',
      '__setattr__', '__str__']
      What about asking for help on r?
      >>help(r)
      Beyond that, you'd want to look at any published API documentation or
      even the source code for the module, which I'd imagine is C or C++ in
      this case.

      Paul

      Comment

      Working...