Page 1 of 1

DirectX

Posted: Wed Sep 26, 2012 3:04 am
by frank-riedel
Is there a tecnic (code example) to send DirectX command to windows in Flowstone??

/Frank

Re: DirectX

Posted: Mon Oct 22, 2012 9:21 am
by frank-riedel
Realy no one worked with this ??

/Frank

Re: DirectX

Posted: Mon Oct 22, 2012 11:49 am
by infuzion
Apparently, we tend not to bother with DirectX.

Re: DirectX

Posted: Mon Oct 22, 2012 12:10 pm
by CoreStylerz
Try to give a look to
http://ruby-opengl.rubyforge.org/

Open gl.
Ruby/Directx is not documented anywhere

Re: DirectX

Posted: Mon Oct 22, 2012 12:11 pm
by CoreStylerz
CoreStylerz wrote:Try to give a look to
http://ruby-opengl.rubyforge.org/

Open gl.
Ruby/Directx is not documented anywhere


The problem is that it uses ruby gems, so perhaps this will not work.

Re: DirectX

Posted: Mon Oct 22, 2012 2:28 pm
by frank-riedel
THX

GUYS


BTW - what is Ruby Gem ? - .
/Frank

Re: DirectX

Posted: Tue Oct 23, 2012 12:08 am
by CoreStylerz
frank-riedel wrote:THX

GUYS


BTW - what is Ruby Gem ? - .
/Frank

"GEMS" are libraries for ruby. Parts of "code".
The same of when you install redistributable for C++, or when you call C standard libraries like .h files in the header.

For example, a programming launguage may translate a little portion of code just by wiriting little thing, without the need you write the function.
In ruby for example, you can write : ciao.reverse to get oaic
Obiviosuly the ruby interpreter call the standard function "reverse" that contain the piece of code that revert a string.
All standard functions could be called with default ruby. Like string functions or encoders etc..
But, not all is included in the standard. So gems are expansion of standard library.
Give a look to this :
http://rubylearning.com/blog/2010/12/14 ... y-and-how/